-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Integrate Glimmer Macros For Binary VM #14781
Changes from 1 commit
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 |
---|---|---|
|
@@ -27,6 +27,11 @@ | |
"test:testem": "testem -f testem.dist.json" | ||
}, | ||
"dependencies": { | ||
"@glimmer/compiler": "^0.21.1", | ||
"@glimmer/node": "^0.21.1", | ||
"@glimmer/reference": "^0.21.0", | ||
"@glimmer/runtime": "^0.21.1", | ||
"@glimmer/util": "^0.21.0", | ||
"broccoli-stew": "^1.2.0", | ||
"ember-cli-get-component-path-option": "^1.0.0", | ||
"ember-cli-normalize-entity-name": "^1.0.0", | ||
|
@@ -35,12 +40,14 @@ | |
"ember-cli-test-info": "^1.0.0", | ||
"ember-cli-valid-component-name": "^1.0.0", | ||
"ember-cli-version-checker": "^1.1.7", | ||
"handlebars": "~3", | ||
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 does ember have a handlebars dep? Seems like this should be in Glimmer and handled upon its publishing, or am I missing something? 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. @krisselden might want to chime in here. I don't remember why we did this. |
||
"jquery": "^3.1.1", | ||
"resolve": "^1.1.7", | ||
"rsvp": "^3.3.3", | ||
"simple-dom": "^0.3.0" | ||
}, | ||
"devDependencies": { | ||
"@glimmer/test-helpers": "^0.21.1", | ||
"aws-sdk": "~2.2.43", | ||
"babel-plugin-feature-flags": "^0.2.3", | ||
"babel-plugin-filter-imports": "~0.2.0", | ||
|
@@ -64,7 +71,7 @@ | |
"git-repo-info": "^1.1.4", | ||
"git-repo-version": "^0.3.1", | ||
"github": "^0.2.3", | ||
"glimmer-engine": "^0.19.4", | ||
"glimmer-engine": "^0.20.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. Do we still need glimmer-engine? |
||
"glob": "^5.0.13", | ||
"html-differ": "^1.3.4", | ||
"mocha": "^2.4.5", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export { DOMChanges, DOMTreeConstruction } from 'glimmer-runtime'; | ||
export { NodeDOMTreeConstruction } from 'glimmer-node'; | ||
export { DOMChanges, DOMTreeConstruction } from '@glimmer/runtime'; | ||
export { NodeDOMTreeConstruction } from '@glimmer/node'; |
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.
Should these all be the same version?
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.
No I don't believe so. The way
lerna publish
works is that it looks if packages were effected in between theHEAD
and the last tag if its not effected it will not publish a new version.