-
-
Notifications
You must be signed in to change notification settings - Fork 34
Remove bower content in update install releases #48
Conversation
@@ -7,5 +7,5 @@ export default { | |||
enableTestURL: true, | |||
debugFileName: ".debug.js", | |||
ignoreFiles: ['ember.js'], | |||
installWithEmberCLI: '# Install the latest Ember canary:\nbower install --save ember#canary' | |||
installWithEmberCLI: '# Install the latest Ember canary:\nnpm install --save-dev emberjs/ember.js#master' |
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.
This command won't actually work (as it would not have the precompiled dist assets).
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.
@rwjblue So we cannot install it via npm?
@@ -13,5 +13,5 @@ export default { | |||
enableTestURL: true, | |||
debugFileName: ".debug.js", | |||
ignoreFiles: ['ember.js'], | |||
installWithEmberCLI: '# Install Ember %s:\nbower install --save ember#v%s\n# Or, install the latest build of this channel which may include unreleased incremental changes:\nbower install --save ember#release' | |||
installWithEmberCLI: '# Install Ember %s:\nnpm install --save-dev ember-source@v%s\n# Or, install the latest build of this channel which may include unreleased incremental changes:\nnpm install --save-dev emberjs/ember.js#release' |
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.
Lets remove the channel specific instructions here (they won't work due to lacking prebuild assets).
@@ -14,5 +14,5 @@ export default { | |||
enableTestURL: true, | |||
debugFileName: ".debug.js", | |||
ignoreFiles: ['ember.js'], | |||
installWithEmberCLI: '# Install Ember %s:\nbower install --save ember#v%s\n# Or, install the latest build of this channel which may include unreleased incremental changes:\nbower install --save ember#beta' | |||
installWithEmberCLI: '# Install Ember %s:\nnpm install --save ember-source#v%s\n# Or, install the latest build of this channel which may include unreleased incremental changes:\nnpm install --save emberjs/ember.js#beta' |
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.
Remove "latest build of channel" part
Your commit was included in #66, thank you! |
#47