Skip to content

Commit

Permalink
chore: update package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mgechev committed Apr 26, 2018
1 parent 075a453 commit 3e8835f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions package.json
Expand Up @@ -9,7 +9,11 @@
"main": "app/background.js",
"build": {
"appId": "com.ngrev",
"files": ["app/**/*", "node_modules/**/*", "package.json"]
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
]
},
"scripts": {
"postinstall": "install-app-deps",
Expand All @@ -26,12 +30,9 @@
"clean:win": "rm -rf ./dist/win",
"clean:linux": "rm -rf ./dist/linux",
"pack": "npm run clean && npm run pack:mac && npm run pack:win && npm run pack:linux",
"pack:mac":
"npm run clean:mac && electron-packager . \"ngrev\" --out=dist/mac --platform=darwin --arch=x64 --icon=build/logo.icns --ignore=dist --ignore=assets --ignore=build --ignore=e2e --ignore=scripts --ignore=src --ignore=tasks --ignore=builder.json --ignore=bower.json --ignore=README.md --ignore=.gitignore --ignore=preview.png --ignore tsconfig.json --ignore yarn.lock --ignore LICENSE --ignore gulpfile.js --ignore appveyor.yml --ignore .travis.yml --ignore .editorconfig --prune",
"pack:win":
"npm run clean:win && electron-packager . \"ngrev\" --out=dist/win --platform=win32 --arch=ia32 --icon=build/logo.ico --ignore=dist --ignore=assets --ignore=build --ignore=e2e --ignore=scripts --ignore=src --ignore=tasks --ignore=builder.json --ignore=bower.json --ignore=README.md --ignore=.gitignore --ignore=preview.png --ignore tsconfig.json --ignore yarn.lock --ignore LICENSE --ignore gulpfile.js --ignore appveyor.yml --ignore .travis.yml --ignore .editorconfig --prune",
"pack:linux":
"npm run clean:linux && electron-packager . \"ngrev\" --out=dist/linux --platform=linux --arch=x64 --icon=build/logo.ico --ignore=dist --ignore=assets --ignore=build --ignore=e2e --ignore=scripts --ignore=src --ignore=tasks --ignore=builder.json --ignore=bower.json --ignore=README.md --ignore=.gitignore --ignore=preview.png --ignore tsconfig.json --ignore yarn.lock --ignore LICENSE --ignore gulpfile.js --ignore appveyor.yml --ignore .travis.yml --ignore .editorconfig --prune",
"pack:mac": "npm run clean:mac && electron-packager . \"ngrev\" --out=dist/mac --platform=darwin --arch=x64 --icon=build/logo.icns --ignore=dist --ignore=assets --ignore=build --ignore=e2e --ignore=scripts --ignore=src --ignore=tasks --ignore=builder.json --ignore=bower.json --ignore=README.md --ignore=.gitignore --ignore=preview.png --ignore tsconfig.json --ignore yarn.lock --ignore LICENSE --ignore gulpfile.js --ignore appveyor.yml --ignore .travis.yml --ignore .editorconfig --prune",
"pack:win": "npm run clean:win && electron-packager . \"ngrev\" --out=dist/win --platform=win32 --arch=ia32 --icon=build/logo.ico --ignore=dist --ignore=assets --ignore=build --ignore=e2e --ignore=scripts --ignore=src --ignore=tasks --ignore=builder.json --ignore=bower.json --ignore=README.md --ignore=.gitignore --ignore=preview.png --ignore tsconfig.json --ignore yarn.lock --ignore LICENSE --ignore gulpfile.js --ignore appveyor.yml --ignore .travis.yml --ignore .editorconfig --prune",
"pack:linux": "npm run clean:linux && electron-packager . \"ngrev\" --out=dist/linux --platform=linux --arch=x64 --icon=build/logo.ico --ignore=dist --ignore=assets --ignore=build --ignore=e2e --ignore=scripts --ignore=src --ignore=tasks --ignore=builder.json --ignore=bower.json --ignore=README.md --ignore=.gitignore --ignore=preview.png --ignore tsconfig.json --ignore yarn.lock --ignore LICENSE --ignore gulpfile.js --ignore appveyor.yml --ignore .travis.yml --ignore .editorconfig --prune",
"setenv": "echo '{ \"name\": \"production\" }' > app/env.json",
"release:all": "npm run setenv && npm run build:mac && npm run build:win && npm run build:linux",
"build:mac": "npm run pack:mac && build \"dist/mac/ngrev-darwin-x64/ngrev.app\" --platform=mac",
Expand Down

0 comments on commit 3e8835f

Please sign in to comment.