Skip to content

Commit 3c50aff

Browse files
committed
Disable wrapInEval by default.
1 parent ad362b1 commit 3c50aff

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [BUGFIX] Prevent broccoli from watching `node_modules/ember-cli/lib/broccoli/`. [#857](https://github.com/stefanpenner/ember-cli/pull/857)
1717
* [BUGFIX] Prevent collision between running `ember server` and `ember test --server` simultaneously. [#862](https://github.com/stefanpenner/ember-cli/pull/862)
1818
* [ENHANCEMENT] Show timing and slow tree listing for each rebuild. [#860](https://github.com/stefanpenner/ember-cli/pull/860) & [#865](https://github.com/stefanpenner/ember-cli/pull/865)
19+
* [BUGFIX] Disable `wrapInEval` by default. [#866](//github.com/stefanpenner/ember-cli/pull/866)
1920

2021
### 0.0.28
2122

lib/broccoli/ember-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function EmberApp(options) {
5252
this.tests = this.hinting = !isProduction;
5353

5454
this.options = defaults(options, {
55-
wrapInEval: !isProduction,
55+
wrapInEval: false,
5656
minifyCSS: {
5757
enabled: true,
5858
options: {}

0 commit comments

Comments
 (0)