Skip to content
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

[BUGFIX beta] Ensure 'use strict'; remover comments are not stripped. #10604

Merged
merged 1 commit into from Mar 11, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/dependent_keys.js
@@ -1,7 +1,7 @@
// Remove "use strict"; from transpiled module until
// https://bugs.webkit.org/show_bug.cgi?id=138038 is fixed
//
// REMOVE_USE_STRICT: true
"REMOVE_USE_STRICT: true";

import o_create from "ember-metal/platform/create";
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/events.js
@@ -1,7 +1,7 @@
// Remove "use strict"; from transpiled module until
// https://bugs.webkit.org/show_bug.cgi?id=138038 is fixed
//
// REMOVE_USE_STRICT: true
"REMOVE_USE_STRICT: true";

/**
@module ember-metal
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/mixin.js
@@ -1,7 +1,7 @@
// Remove "use strict"; from transpiled module until
// https://bugs.webkit.org/show_bug.cgi?id=138038 is fixed
//
// REMOVE_USE_STRICT: true
"REMOVE_USE_STRICT: true";

/**
@module ember
Expand Down
3 changes: 1 addition & 2 deletions packages/ember-metal/lib/platform/create.js
@@ -1,8 +1,7 @@
// Remove "use strict"; from transpiled module until
// https://bugs.webkit.org/show_bug.cgi?id=138038 is fixed
//
// REMOVE_USE_STRICT: true
//
"REMOVE_USE_STRICT: true";

import defineProperties from 'ember-metal/platform/define_properties';

Expand Down
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/utils.js
@@ -1,7 +1,7 @@
// Remove "use strict"; from transpiled module until
// https://bugs.webkit.org/show_bug.cgi?id=138038 is fixed
//
// REMOVE_USE_STRICT: true
"REMOVE_USE_STRICT: true";

import Ember from "ember-metal/core";
import o_create from 'ember-metal/platform/create';
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-runtime/lib/system/core_object.js
@@ -1,7 +1,7 @@
// Remove "use strict"; from transpiled module until
// https://bugs.webkit.org/show_bug.cgi?id=138038 is fixed
//
// REMOVE_USE_STRICT: true
"REMOVE_USE_STRICT: true";

/**
@module ember
Expand Down