Skip to content

Commit

Permalink
fix: shebang line not finding node on linux (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharygolba committed Apr 17, 2016
1 parent 4a193b8 commit 5a734e7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/lux
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node --use_strict
#!/usr/bin/env node
require('../dist/packages/cli');
2 changes: 1 addition & 1 deletion examples/social-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"lux-framework": "0.0.1-beta",
"lux-framework": "0.0.1-beta.1",
"babel-core": "6.7.4",
"babel-eslint": "6.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
Expand Down
2 changes: 1 addition & 1 deletion examples/todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"lux-framework": "0.0.1-beta",
"lux-framework": "0.0.1-beta.1",
"babel-core": "6.7.4",
"babel-eslint": "6.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
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": "lux-framework",
"version": "0.0.1-beta",
"version": "0.0.1-beta.1",
"description": "A MVC style Node.js framework for building lightning fast JSON APIs",
"repository": "https://github.com/postlight/lux",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/packages/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import generate from './commands/generate';

import tryCatch from '../../utils/try-catch';

cli.version('0.0.1-beta');
cli.version('0.0.1-beta.1');

cli
.command('n <name>')
Expand Down
2 changes: 1 addition & 1 deletion src/packages/cli/templates/package-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default (name) => {
"author": "",
"license": "MIT",
"dependencies": {
"lux-framework": "0.0.1-beta",
"lux-framework": "0.0.1-beta.1",
"babel-core": "6.7.4",
"babel-eslint": "6.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
Expand Down

0 comments on commit 5a734e7

Please sign in to comment.