Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
},
"scripts": {
"lint:js": "eslint \"app/assets/**/*.js\"; exit 0",
"lint": "npm run lint:js",
"lint": "yarn lint:js",
"build:js": "./node_modules/webpack/bin/webpack.js",
"build:renderer": "./node_modules/.bin/babel-node hypernova.js --presets es2015,react; exit 0",
"build": "npm run build:js & npm run build:renderer",
"watch:js": "watch 'npm run lint:js & npm run build:js' 'app/assets'",
"watch": "npm run build & npm run watch:js"
"build": "yarn build:js & yarn build:renderer",
"watch:js": "watch 'yarn lint:js & yarn build:js' 'app/assets'",
"watch": "yarn build & yarn watch:js"
},
"repository": {
"type": "git",
Expand Down
Loading