Skip to content

Commit

Permalink
feat(*): support angular 2.0.0
Browse files Browse the repository at this point in the history
Closes #658
Closes #659
  • Loading branch information
sebholstein committed Sep 15, 2016
1 parent c340ffd commit 8059b44
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
6 changes: 4 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ module.exports = function(config) {
}
},
files: [
{pattern: 'node_modules/core-js/client/core.js', included: true, watched: true},
'node_modules/systemjs/dist/system-polyfills.js',
'node_modules/core-js/client/core.js',
'node_modules/reflect-metadata/Reflect.js',

'node_modules/zone.js/dist/zone.js',
'node_modules/zone.js/dist/long-stack-trace-zone.js',
'node_modules/zone.js/dist/proxy.js',
'node_modules/zone.js/dist/sync-test.js',
'node_modules/zone.js/dist/jasmine-patch.js',
'node_modules/zone.js/dist/async-test.js',
'node_modules/zone.js/dist/fake-async-test.js',
{pattern: 'node_modules/systemjs/dist/system-polyfills.js', included: true, watched: false },

{pattern: 'node_modules/systemjs/dist/system.src.js', included: true, watched: true},

{pattern: 'karma-systemjs-config.js', included: true, watched: true},
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
},
"homepage": "https://github.com/SebastianM/angular2-google-maps#readme",
"dependencies": {
"@angular/common": "2.0.0-rc.6",
"@angular/compiler": "2.0.0-rc.6",
"@angular/core": "2.0.0-rc.6",
"@angular/platform-browser": "2.0.0-rc.6",
"@angular/platform-browser-dynamic": "2.0.0-rc.6",
"rxjs": "5.0.0-beta.11",
"zone.js": "^0.6.17"
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"rxjs": "^5.0.0-beta.12",
"zone.js": "^0.6.21"
},
"devDependencies": {
"babel-eslint": "6.0.4",
Expand Down Expand Up @@ -70,13 +70,13 @@
"jspm": {
"jspmNodeConversion": false,
"dependencies": {
"@angular/common": "2.0.0-rc.6",
"@angular/compiler": "2.0.0-rc.6",
"@angular/core": "2.0.0-rc.6",
"@angular/platform-browser": "2.0.0-rc.6",
"@angular/platform-browser-dynamic": "2.0.0-rc.6",
"rxjs": "5.0.0-beta.11",
"zone.js": "^0.6.17"
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"rxjs": "^5.0.0-beta.12",
"zone.js": "^0.6.21"
}
}
}

0 comments on commit 8059b44

Please sign in to comment.