-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In `ember-cli` when using `DELAYED_TRANSPILATION` feature, we explicitly set `disablePresetEnv` flag to `true`. `shouldRunPresetEnv` is a negation of `disablePresetEnv`. Prior to this change `options.presets` was an array with one `false` item in it (`shouldRunPresetEnv` was set to `false`) and would let files be transplied when `DELAYED_TRANSPILATION` was enabled. Useful links: + https://github.com/ember-cli/ember-cli/blob/2e0cade64c4698cc48b1fdc20fda2219e63cc973/lib/models/addon.js#L256
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
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
thanks for the test!