-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Upgrade to RC7 #505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to RC7 #505
Changes from 3 commits
66bbee1
afc15fa
4e33b41
b23009a
b73e42d
fd5a01a
5571fd6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,25 +18,28 @@ module.exports = function(config) { | |
|
||
// Zone.js dependencies | ||
'node_modules/zone.js/dist/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', | ||
|
||
// RxJs. | ||
{ pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false }, | ||
{ pattern: 'node_modules/rxjs/**/*.js.map', included: false, watched: false }, | ||
|
||
|
||
{pattern: 'karma-test-shim.js', included: true, watched: true}, | ||
{pattern: 'built/test/matchers.js', included: true, watched: true}, | ||
{ pattern: 'karma-test-shim.js', included: true, watched: true }, | ||
//{ pattern: 'dist/test/matchers.js', included: true, watched: true }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the line |
||
|
||
// paths loaded via module imports | ||
// Angular itself | ||
{pattern: 'node_modules/@angular/**/*.js', included: false, watched: true}, | ||
{pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: true}, | ||
{ pattern: 'node_modules/@angular/**/*.js', included: false, watched: true }, | ||
{ pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: true }, | ||
|
||
{pattern: 'node_modules/firebase/firebase.js', included: false, watched: false}, | ||
{pattern: 'dist/**/*.js', included: false, watched: true}, | ||
{pattern: 'dist/**/*.js.map', included: false, watched: false} | ||
{ pattern: 'node_modules/firebase/firebase.js', included: false, watched: false }, | ||
{ pattern: 'dist/**/*.js', included: false, watched: true }, | ||
{ pattern: 'dist/**/*.js.map', included: false, watched: false } | ||
], | ||
|
||
port: 9876, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,8 @@ | |
"@angular/core": "^2.0.0-rc.5", | ||
"@angular/platform-browser": "^2.0.0-rc.5", | ||
"@angular/platform-browser-dynamic": "^2.0.0-rc.5", | ||
"@types/bluebird": "^3.0.32", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why bluebird types? We're not using bluebird library There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need these types if we're not using Bluebird? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That should be gone. Needed it for debugging. |
||
"@types/request": "0.0.30", | ||
"firebase": "^3.0.3", | ||
"rxjs": "5.0.0-beta.6" | ||
}, | ||
|
@@ -70,7 +72,7 @@ | |
"typedoc": "github:jeffbcross/typedoc", | ||
"typescript": "next", | ||
"typings": "^1.3.2", | ||
"zone.js": "^0.6.6" | ||
"zone.js": "^0.6.21" | ||
}, | ||
"typings": "dist/angularfire2.d.ts" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can SystemJS load the ES modules instead, using the old configuration but adding
format: 'esm'
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nevermind