Skip to content

Commit

Permalink
chore(deps): update to 0-beta.3, remove unused and deprecated depende…
Browse files Browse the repository at this point in the history
…cies
  • Loading branch information
valorkin committed Feb 6, 2016
1 parent 2c3b9c7 commit 7173051
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 21 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_js:

before_install:
- npm install -g [email protected]
- npm install -g [email protected]

script:
- npm test
6 changes: 0 additions & 6 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ gulp.paths = {

require('require-dir')('./gulp-tasks');

var clean = require('gulp-clean');
gulp.task('clean', function () {
return gulp.src('bundles', {read: false})
.pipe(clean());
});

gulp.task('default', function () {
gulp.start('lint');
});
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "ng2-bootstrap",
"version": "1.0.2-beta.2",
"version": "1.0.3",
"description": "angular2 bootstrap components",
"scripts": {
"compile": "node ./node_modules/typescript/bin/tsc",
"prepublish": "gulp clean && ./node_modules/.bin/tsc && ./make.js",
"compile": "./node_modules/typescript/bin/tsc",
"prepublish": "./node_modules/.bin/tsc && ./make.js",
"publish:gh-pages": "./gh-pages-publish.js",
"postpublish": "npm run build:prod && npm run publish:gh-pages",
"build:prod": "NODE_ENV=production webpack --progress --color",
"build:dev": "webpack --progress --color",
"serve:dev": "webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"serve:prod": "NODE_ENV=production webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color",
"build:dev": "./node_modules/.bin/webpack --progress --color",
"serve:dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"start": "npm run serve:dev",
"pretest": "gulp lint",
"test": "NODE_ENV=test karma start"
"pretest": "./node_modules/.bin/gulp lint",
"test": "NODE_ENV=test ./node_modules/.bin/karma start"
},
"main": "ng2-bootstrap.js",
"typings": "ng2-bootstrap.d.ts",
Expand All @@ -37,24 +37,24 @@
"moment": "2.11.2"
},
"peerDependencies": {
"angular2": "2.0.0-beta.2"
"angular2": "^2.0.0-beta.2"
},
"devDependencies": {
"angular2": "2.0.0-beta.2",
"angular2": "2.0.0-beta.3",
"async": "1.5.2",
"balanced-match": "0.3.0",
"bootstrap": "3.3.6",
"compression-webpack-plugin": "0.2.0",
"copy-webpack-plugin": "1.1.1",
"del": "2.2.0",
"es6-promise": "3.0.2",
"es6-shim": "0.33.3",
"es7-reflect-metadata": "1.5.5",
"eslint": "1.10.3",
"exports-loader": "0.6.2",
"file-loader": "0.8.5",
"gh-pages": "0.9.0",
"gulp": "3.9.0",
"gulp-clean": "0.3.1",
"gulp-eslint": "1.1.1",
"gulp-size": "2.0.0",
"gulp-tslint": "4.3.1",
Expand All @@ -65,7 +65,7 @@
"karma": "0.13.19",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.3",
"karma-jasmine": "0.3.6",
"karma-jasmine": "0.3.7",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.23",
Expand Down
4 changes: 2 additions & 2 deletions test.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ require('es6-promise');
require('es6-shim');
require('es7-reflect-metadata/dist/browser');

require('zone.js/lib/browser/zone-microtask.js');
require('zone.js/lib/browser/long-stack-trace-zone.js');
require('zone.js/dist/zone-microtask.js');
require('zone.js/dist/long-stack-trace-zone.js');
require('zone.js/dist/jasmine-patch.js');

var testing = require('angular2/testing');
Expand Down

0 comments on commit 7173051

Please sign in to comment.