-
Notifications
You must be signed in to change notification settings - Fork 6.8k
build: bump to angular 6.0.0-rc.1 and rxjs 6.0.0-rc.0 #10642
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
Changes from all commits
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 |
---|---|---|
|
@@ -26,6 +26,7 @@ filegroup( | |
"protobufjs", | ||
"protractor", | ||
"reflect-metadata", | ||
"rxjs", | ||
"tsickle", | ||
"tslib", | ||
"tsutils", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,14 @@ | |
"node": ">= 5.4.1" | ||
}, | ||
"dependencies": { | ||
"@angular/animations": "6.0.0-rc.0", | ||
"@angular/common": "6.0.0-rc.0", | ||
"@angular/compiler": "6.0.0-rc.0", | ||
"@angular/core": "6.0.0-rc.0", | ||
"@angular/forms": "6.0.0-rc.0", | ||
"@angular/platform-browser": "6.0.0-rc.0", | ||
"@angular/animations": "6.0.0-rc.1", | ||
"@angular/common": "6.0.0-rc.1", | ||
"@angular/compiler": "6.0.0-rc.1", | ||
"@angular/core": "6.0.0-rc.1", | ||
"@angular/forms": "6.0.0-rc.1", | ||
"@angular/platform-browser": "6.0.0-rc.1", | ||
"core-js": "^2.4.1", | ||
"rxjs": "6.0.0-beta.1", | ||
"rxjs": "6.0.0-rc.0", | ||
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. @jelbourn I'm not completely sure why Bazel is complaining about not being able to find rxjs. Do you have any ideas? 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. You need to bump the Bazel rules for nodejs and typescript in WORKSPACE. See here for the correct versions You may also need to add 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. One more thing, you also need to add "rxjs" to the list of node_modules in the top-level BUILD file. Then the only errors left should be the operators import. 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. After pulling and running locally, the following are the only BUILD files that need to be modified: cdk/a11y, cdk/overlay, and cdk/tree, and only the test sources need 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. Thanks for looking into it, but I'm not sure that's the case. I tried adding it to all of them and it ended up erroring on the 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. You never added rxjs to the top-level BUILD node_modules 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. See here for reference 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. Looks like that did it, although it still feels weird to add 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. The |
||
"systemjs": "0.19.43", | ||
"tsickle": "^0.27.2", | ||
"tslib": "^1.9.0", | ||
|
@@ -42,13 +42,13 @@ | |
"devDependencies": { | ||
"@angular-devkit/core": "^0.4.5", | ||
"@angular-devkit/schematics": "^0.4.5", | ||
"@angular/bazel": "6.0.0-rc.0", | ||
"@angular/compiler-cli": "6.0.0-rc.0", | ||
"@angular/http": "6.0.0-rc.0", | ||
"@angular/platform-browser-dynamic": "6.0.0-rc.0", | ||
"@angular/platform-server": "6.0.0-rc.0", | ||
"@angular/router": "6.0.0-rc.0", | ||
"@angular/upgrade": "6.0.0-rc.0", | ||
"@angular/bazel": "6.0.0-rc.1", | ||
"@angular/compiler-cli": "6.0.0-rc.1", | ||
"@angular/http": "6.0.0-rc.1", | ||
"@angular/platform-browser-dynamic": "6.0.0-rc.1", | ||
"@angular/platform-server": "6.0.0-rc.1", | ||
"@angular/router": "6.0.0-rc.1", | ||
"@angular/upgrade": "6.0.0-rc.1", | ||
"@bazel/ibazel": "0.3.1", | ||
"@google-cloud/storage": "^1.1.1", | ||
"@schematics/angular": "^0.4.5", | ||
|
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.
rxjs is actually not supposed to be here because it has its own bazel rules. Can you share the error you were getting?
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.
I don't have the exact error, but it was something along the lines of "Can't find module
rxjs/index
".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.
Chatted w/ Alex, this seems like an issue w/ the ngsummary files being generated, we're figuring out the right way for core to fix this