Skip to content

Commit

Permalink
Refactor gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lathonez committed Apr 19, 2016
1 parent f7530a5 commit 3119b92
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 196 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ npm test # run unit tests

## Debug Unit tests
```bash
npm run test.watch # in one window - build all the tests and start watching for changes
npm run watch # in one window - build all the tests and start watching for changes
npm run karma # start karma in debug mode: mutli run Chrome, hit `debug` to get going
```

Expand Down
15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,23 @@
},
"devDependencies": {
"awesome-typescript-loader": "0.17.0-rc.5",
"chalk": "1.1.3",
"codecov.io": "0.1.6",
"del": "2.2.0",
"es6-module-loader": "0.17.11",
"gulp": "3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-inline-ng2-template": "^1.1.2",
"gulp-load-plugins": "1.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "4.3.5",
"gulp-typescript": "^2.12.1",
"gulp-util": "^3.0.7",
"gulp-watch": "4.3.5",
"ionic-gulp-browserify-typescript": "^1.0.1",
"ionic-gulp-fonts-copy": "^1.0.0",
"ionic-gulp-html-copy": "^1.0.0",
"ionic-gulp-sass-build": "^1.0.0",
"ionic-gulp-scripts-copy": "^1.0.0",
"ionic-gulp-webpack-build": "^1.0.0",
"ionic-native": "^1.1.0",
"istanbul": "^0.4.3",
"jasmine-core": "2.4.1",
"jasmine-spec-reporter": "^2.4.0",
Expand Down Expand Up @@ -71,13 +66,13 @@
"android"
],
"scripts": {
"build": "gulp --gulpfile test/gulpfile.ts --cwd ./ ionic.build",
"e2e": "gulp --gulpfile test/gulpfile.ts --cwd ./ test.build.e2e && ./node_modules/protractor/bin/protractor test/protractor.conf.js",
"karma": "gulp --gulpfile test/gulpfile.ts --cwd ./ test.karma.debug",
"build": "gulp --gulpfile test/gulpfile.ts --cwd ./ ionic-build",
"e2e": "gulp --gulpfile test/gulpfile.ts --cwd ./ build-e2e && ./node_modules/protractor/bin/protractor test/protractor.conf.js",
"karma": "gulp --gulpfile test/gulpfile.ts --cwd ./ karma-debug",
"postinstall": "typings install",
"start": "ionic serve",
"test": "gulp --gulpfile test/gulpfile.ts --cwd ./ test.new",
"test.watch": "gulp --gulpfile test/gulpfile.ts --cwd ./ test.watch.build",
"test": "gulp --gulpfile test/gulpfile.ts --cwd ./ unit-test",
"watch": "gulp --gulpfile test/gulpfile.ts --cwd ./ watch-unit",
"webdriver-update": "webdriver-manager update"
},
"repository": {
Expand Down

0 comments on commit 3119b92

Please sign in to comment.