Skip to content

Commit

Permalink
FIX: forgot to wire up executable in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ldegen committed Dec 12, 2016
1 parent 4579e97 commit 368f51a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src
spec
2 changes: 2 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#! /usr/bin/env node
require("./lib/cli.js");
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "bigpack",
"version": "0.1.0",
"version": "0.1.1",
"description": " bundle up recursive dependencies of a NPM packge",
"main": "lib/index.js",
"bin":{
"bigpack":"main.js"
},
"scripts": {
"prepublish": "coffee -o lib/ -c src/*",
"test": "mocha spec --recursive --require spec/helpers/chai.js --require coffee-script/register --compilers coffee:coffee-script/register",
Expand Down

0 comments on commit 368f51a

Please sign in to comment.