Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
feat() #466 - introduce npm scripts as aliases for gulp tasks, npm-de…
Browse files Browse the repository at this point in the history
…bug.log in gitignore
  • Loading branch information
gruppjo committed Feb 24, 2017
1 parent b816c67 commit 59e3031
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ coverage

# yarn
yarn.lock

# npm
npm-debug.log
3 changes: 3 additions & 0 deletions generators/app/templates/gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@

# yarn
yarn.lock

# npm
npm-debug.log
11 changes: 10 additions & 1 deletion generators/app/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@
"node": ">=4.0.0"
},
"scripts": {
"test": "gulp build --minify && gulp karma"
"test": "gulp build --minify && gulp karma",
"start": "gulp watch",
"watch": "npm start",
"prepare": "gulp --cordova 'prepare'",
"livereload:ios": "gulp --livereload 'run ios'",
"livereload:android": "gulp --livereload 'run android'",
"run:ios": "gulp --cordova 'run ios",
"run:android": "gulp --cordova 'run android'",
"watch:build": "gulp watch-build",
"build": "gulp build --minify"
},
"devDependencies": {
"browser-sync": "^2.8.3",
Expand Down

0 comments on commit 59e3031

Please sign in to comment.