-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUGFIX release] Enable linking ember-source without prod files.
Prior to these changes, in order to `npm link ember-source` you must run a production build of Ember. This is because of the list of files that we provide to `stew.find` (now `Funnel`) includes `ember.prod.js` and `ember.min.js`. This commit does two main things: * Remove usage of `stew.find` (and therefore remove `broccoli-stew` as a dep). It is likely that `stew.find` will be deprecated (stefanpenner/broccoli-stew#122). * Only provide the list of files that are present to the `Funnel` `files` listing. Before this change the following would throw an error: ``` git clone [email protected]:emberjs/ember.js.git ember-canary cd ember-canary yarn install ./node_modules/.bin/ember build --environment=development yarn link cd .. ember new test-app --yarn cd test-app yarn link ember-source ember s ``` (cherry picked from commit 1a24de8)
- Loading branch information
1 parent
c0e1e56
commit 974379e
Showing
2 changed files
with
23 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters