Skip to content

Commit

Permalink
Merge pull request #4 from StatelessSoftware/v0.0.2
Browse files Browse the repository at this point in the history
V0.0.2
  • Loading branch information
DrewImm authored Apr 5, 2018
2 parents 5339f84 + 402384f commit 7c42b78
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.0.2] - 2018-04-05

### Fixes

- [Issue #3] - Read method should return false instead of empty object
- [Issue #2] - Readme - Installation instructs to install with -g
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Create config files and parse
## Installation

```
npm i -g StatelessSoftware/cli-configurator
npm i StatelessSoftware/cli-configurator
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ module.exports = function(name, env = "default", folder = "config") {
}
else {

payload = {};
payload = false;

}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cli-configurator",
"version": "0.0.1",
"version": "0.0.2",
"description": "Create config files and parse",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 7c42b78

Please sign in to comment.