Skip to content

Commit 85051b9

Browse files
committed
chore(dependencies): Updated dev dependencies, fixed SystemJS config
1 parent ebfb393 commit 85051b9

File tree

3 files changed

+15
-19
lines changed

3 files changed

+15
-19
lines changed

demo/systemjs.config.js

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ System.config( {
1111
map: {
1212

1313
// Demo & library
14-
'app': './',
14+
'app': './main.js',
1515
'../': './../',
1616

17-
// Libraries
17+
// External libraries
1818
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
1919
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
2020
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
@@ -27,17 +27,13 @@ System.config( {
2727
// Package loading details
2828
packages: {
2929

30-
// App & library
31-
'app': {
32-
main: 'main.js',
33-
defaultExtension: 'js'
34-
},
30+
// Library
3531
'../': {
3632
main: 'index.js',
3733
defaultExtension: 'js'
3834
},
3935

40-
// Libraries
36+
// External libraries
4137
'rxjs': {
4238
defaultExtension: 'js'
4339
}

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,22 @@
6060
"del": "2.2.x",
6161
"gulp": "github:gulpjs/gulp#4.0",
6262
"gulp-autoprefixer": "3.1.x",
63-
"gulp-bump": "2.5.x",
63+
"gulp-bump": "2.6.x",
6464
"gulp-clean-css": "2.3.x",
6565
"gulp-conventional-changelog": "1.1.x",
66-
"gulp-git": "1.12.x",
66+
"gulp-git": "1.13.x",
6767
"gulp-inline-ng2-template": "4.0.x",
6868
"gulp-insert": "0.5.x",
6969
"gulp-rename": "1.2.x",
70-
"gulp-sourcemaps": "2.2.x",
71-
"gulp-sass": "3.0.x",
70+
"gulp-sourcemaps": "2.4.x",
71+
"gulp-sass": "3.1.x",
7272
"gulp-sass-lint": "1.3.x",
7373
"gulp-tslint": "7.0.x",
7474
"gulp-typescript": "3.1.x",
7575
"gulp-util": "3.0.x",
76-
"html-minifier": "3.2.x",
76+
"html-minifier": "3.3.x",
7777
"jasmine-core": "2.5.x",
78-
"karma": "1.3.x",
78+
"karma": "1.4.x",
7979
"karma-chrome-launcher": "2.0.x",
8080
"karma-cli": "1.0.x",
8181
"karma-coverage": "1.1.x",
@@ -86,13 +86,13 @@
8686
"reflect-metadata": "0.1.x",
8787
"remap-istanbul": "0.8.x",
8888
"require-dir": "0.3.x",
89-
"rxjs": "5.0.1",
89+
"rxjs": "5.1.x",
9090
"source-map-loader": "0.1.x",
91-
"systemjs": "0.19.x",
92-
"tslint": "4.0.x",
91+
"systemjs": "0.20.x",
92+
"tslint": "4.4.x",
9393
"typescript": "2.0.x",
9494
"web-animations-js": "2.2.x",
95-
"webpack": "2.1.0-beta.27",
95+
"webpack": "2.2.x",
9696
"zone.js": "0.7.x"
9797
}
9898
}

tools/gulp/env/env-watch.task.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ gulp.task( 'env:serve', () => {
1616
},
1717
startPath: '/demo',
1818
logConnections: true,
19-
logPrefix: '[BROWSER-SYNC]',
19+
logPrefix: 'BROWSER-SYNC',
2020
notify: {
2121
styles: { // Custom styles for the notification in the browser, bottom center
2222
top: 'auto',

0 commit comments

Comments
 (0)