diff --git a/README.md b/README.md index 0fb7c14b..4c8a2a9e 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ brew cask install hyper To make sure that your code works in the finished application, you can generate the binaries like this: ```bash -$ npm run pack +npm run dist ``` After that, you'll see the binary in the `./dist` folder! diff --git a/package.json b/package.json index f875f266..e92a974e 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,6 @@ "test": "npm run lint", "prepush": "npm test", "postinstall": "install-app-deps", - "pack": "npm run build && build --dir && cross-env BABEL_ENV=production babel --out-file app/dist/bundle.js --no-comments --minified app/dist/bundle.js", "dist": "npm run build && cross-env BABEL_ENV=production babel --out-file app/dist/bundle.js --no-comments --minified app/dist/bundle.js && build", "clean": "npm cache clear && rm -rf node_modules && rm -rf app/node_modules && rm -rf app/dist" },