Browse Source

Fix command line error

pull/2/head
Guillaume Vincent 9 years ago
parent
commit
b09da25f62
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      package.json

+ 1
- 1
package.json View File

@@ -8,7 +8,7 @@
"build": "npm-run-all clean copy 'build:*'",
"build:app": "browserify -e ./app/app.js -o ./dist/app.js",
"clean": "rimraf ./dist/**/*",
"copy": "mkdir -p ./dist && cp -ra public/. dist",
"copy": "mkdir -p ./dist && cp public/* dist/",
"serve": "static -p ${PORT:-5000} --gzip --host-address 0.0.0.0 dist/",
"start": "npm run serve",
"prestart": "npm run build"


Loading…
Cancel
Save