Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
Fix README and set up Codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
ephread committed Feb 13, 2019
1 parent c972422 commit a16fc86
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ jobs:

# run tests!
- run: npm test
- run: npm run-script build
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ![Autodazzler](https://i.imgur.com/KgX7eIm.jpg)

[![CircleCI](https://circleci.com/gh/ephread/Autodazzler/tree/master.svg?style=shield)](https://circleci.com/gh/ephread/Autodazzler/tree/master)
[![codecov](https://codecov.io/gh/ephread/Autodazzler/branch/master/graph/badge.svg)](https://codecov.io/gh/ephread/Autodazzler)
[![License](https://img.shields.io/badge/license-GPL-green.svg)](https://github.com/ephread/autodazzler/blob/master/LICENSE.md)

Autodazzler is a small utility to perform batch rendering in Daz Studio.
Expand Down Expand Up @@ -82,23 +83,23 @@ Note that all paths use forward slashes, even if you are working on windows.
{ "Cube 2": "path/to/CubePosePreset.duf" }
],
"changeVisibility": {
"Cube 1": { "visible": false }
"Cube 1": { "visible": false },
"Cube 2": { "visible": true, "recursive": true }
}
}
```

##### Make the object named `Cube 1` visible

```
```json
"changeVisibility": {
"Cube 1": { "visible": true }
}
```

##### Make the object named `Cube 1` and all of its children invisible

```
```json
"changeVisibility": {
"Cube 1": { "visible": false, "recursive": true }
}
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": ["src/**/*.{js}"]
"collectCoverageFrom": ["src/**/*.js"]
}

0 comments on commit a16fc86

Please sign in to comment.