Skip to content

Commit

Permalink
Merge pull request #15238 from rwjblue/remove-references-to-ember-js
Browse files Browse the repository at this point in the history
[BUGFIX release] Remove reference to `dist/ember.js` file.
  • Loading branch information
rwjblue authored May 12, 2017
2 parents 6e8e474 + 609efd1 commit fdd1bcc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion config/s3ProjectConfig.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
function fileMap(revision, tag, date) {
return {
"ember.js": fileObject("ember", ".js", "text/javascript", revision, tag, date),
"ember.debug.js": fileObject("ember.debug", ".js", "text/javascript", revision, tag, date),
"ember-testing.js": fileObject("ember-testing", ".js", "text/javascript", revision, tag, date),
"ember-tests.js": fileObject("ember-tests", ".js", "text/javascript", revision, tag, date),
Expand Down
13 changes: 0 additions & 13 deletions packages/ember-debug/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,19 +265,6 @@ if (DEBUG && !isTesting()) {
}
}

/*
We are transitioning away from `ember.js` to `ember.debug.js` to make
it much clearer that it is only for local development purposes.
This flag value is changed by the tooling (by a simple string replacement)
so that if `ember.js` (which must be output for backwards compat reasons) is
used a nice helpful warning message will be printed out.
*/
export let runningNonEmberDebugJS = false;
if (runningNonEmberDebugJS) {
warn('Please use `ember.debug.js` instead of `ember.js` for development and debugging.');
}

export {
assert,
info,
Expand Down

0 comments on commit fdd1bcc

Please sign in to comment.