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

Commit

Permalink
Fixed scripts (closes #99)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsebastien committed Apr 9, 2016
1 parent 7b2157f commit 89acc19
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* 0.5.5
* fixed an issue with the build script (closes #114)
* 0.5.4
* now supports Angular 2 beta 13
* fixed an issue with a dependency of babel (#97)
Expand Down
6 changes: 3 additions & 3 deletions app/templates/projectTemplates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"tsc": "tsc",
"typings": "typings",
"clean": "gulp clean",
"compile": "gulp",
"build": "npm run compile && npm run test",
"test": "gulp prepare-test-unit && gulp test-unit",
"build": "gulp",
"pretest": "gulp prepare-test-unit",
"test": "gulp test-unit",
"start": "npm run serve",
"serve": "nodemon --watch gulpfile.js --watch gulpfile.babel.js --watch package.json --watch .jshintrc --watch .jscsrc --watch tsconfig.json --watch tslint.json --watch jspm.conf.js --exec gulp serve",
"serve-dist": "nodemon --watch gulpfile.js --watch gulpfile.babel.js --watch package.json --watch .jshintrc --watch .jscsrc --watch tsconfig.json --watch tslint.json --watch jspm.conf.js --exec gulp serve-dist",
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-modern-web-dev",
"version": "0.5.4",
"version": "0.5.5",
"description": "Modern Web Development Yeoman Generator: Gulp, ES2015, TypeScript, Angular 2, SASS, Minification, Bundling, Sourcemaps, ...",
"author": {
"name": "Sebastien Dubois",
Expand Down Expand Up @@ -85,13 +85,13 @@
},
"scripts": {
"clean": "gulp clean",
"compile": "gulp",
"build": "npm run compile && npm run test",
"build": "gulp",
"pretest": "npm run build",
"test": "mocha",
"update": "npm install",
"update": "npm install --no-optional",
"outdated": "npm outdated",
"help": "gulp help",
"setup": "npm install --no-optional",
"prepublish": "npm run build"
"prepublish": "npm test && npm run build"
}
}

0 comments on commit 89acc19

Please sign in to comment.