Skip to content

Commit

Permalink
fix: Add missing Shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
y-lakhdar committed Aug 16, 2019
1 parent 7a2cd44 commit a7baa54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"fs-extra": "^8.1.0",
"inquirer": "^6.5.1",
"recursive-readdir": "^2.2.2",
"underscore": "^1.9.1"
"underscore": "^1.9.1",
"update-notifier": "^3.0.1"
},
"devDependencies": {
"conventional-recommended-bump": "^6.0.0",
Expand All @@ -28,8 +29,7 @@
"prettier": "^1.18.2",
"require-dir": "^1.2.0",
"semver": "^6.3.0",
"standard-version": "^7.0.0",
"update-notifier": "^3.0.1"
"standard-version": "^7.0.0"
},
"scripts": {
"start": "node ./src/cli.js",
Expand Down
2 changes: 2 additions & 0 deletions src/cli.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node
'use strict';
const program = require('commander');
const { resolve } = require('path');
const { retrieveMetadata } = require('./tasks/retrieve');
Expand Down

0 comments on commit a7baa54

Please sign in to comment.