Skip to content

Commit

Permalink
npx fix + v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
juanhapes committed Jul 16, 2019
1 parent b5404a8 commit b5f7dc2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2019-07-16
### Added
- `index` fix for npx excecution
- `package.json` bin command

## [1.1.0] - 2019-07-16
### Changed
- Environments and Config paths, uses MS_PATH from env file
Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

'use strict';

const { EnvironmentBuilder } = require('./lib');
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@janiscommerce/environment-builder",
"version": "1.1.0",
"version": "1.1.1",
"description": "Build the exclusive files of each environment in the right folder.",
"main": "index.js",
"bin": {
"environment-builder": "index.js"
},
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"test-ci": "nyc --reporter=html --reporter=text mocha --recursive tests/",
Expand Down

0 comments on commit b5f7dc2

Please sign in to comment.