From a5d8b192eb163584202cfcd4b89393c291dd21a1 Mon Sep 17 00:00:00 2001 From: Crystian Date: Mon, 7 May 2018 12:19:45 -0300 Subject: [PATCH] release 0.0.6 --- .npmignore | 15 +++++++++++++++ bin/index.js | 2 +- package.json | 4 ++-- 3 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..949cb22 --- /dev/null +++ b/.npmignore @@ -0,0 +1,15 @@ +# like gitignore, copied and pasted +/node_modules +/.idea +/mochawesome-report +/coverage +/.nyc_output +package-lock.json +npm-debug.log +yarn-error.log + +# just for npm +/.circleci +/test +/wallaby.js +/.gitignore diff --git a/bin/index.js b/bin/index.js index 0990a41..73f5090 100644 --- a/bin/index.js +++ b/bin/index.js @@ -10,7 +10,7 @@ const { spawn } = require('child_process'); const { messages } = require('../lib/i18n'); -const { buildCommand } = require('../lib/builders'); +const { buildCommand } = require('../lib/command'); process.title = messages.app.name; diff --git a/package.json b/package.json index 45a6df2..0ac5499 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "executor", - "version": "0.0.3-beta", + "version": "0.0.6-beta", "license": "MIT", - "description": "A powerful shortcutter to your console for you and your team", + "description": "A powerful short-cutter to your console for you and your team", "scripts": { "test": "mocha --watch -R nyan", "test-ci": "mocha",