Skip to content

Commit

Permalink
Merge pull request #583 from teddyzeenny/source-map
Browse files Browse the repository at this point in the history
Disable source map for ember_debug.js
  • Loading branch information
teddyzeenny committed Aug 29, 2016
2 parents 9ae625d + a34099c commit 5f88f98
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ember-cli-build.js
Expand Up @@ -106,7 +106,7 @@ module.exports = function(defaults) {
emberDebug = esTranspiler(emberDebug, {
moduleIds: true,
modules: 'amdStrict',
resolveModuleSource: moduleResolver,
resolveModuleSource: moduleResolver
});

var previousEmberVersionsSupportedString = '[' + packageJson.previousEmberVersionsSupported.map(function(item) {
Expand Down Expand Up @@ -148,7 +148,8 @@ module.exports = function(defaults) {
emberDebug = concatFiles(emberDebug, {
headerFiles: ['loader.js'],
inputFiles: ['**/*.js'],
outputFile: '/ember_debug.js'
outputFile: '/ember_debug.js',
sourceMapConfig: { enabled: false }
});

var emberDebugs = [];
Expand Down

0 comments on commit 5f88f98

Please sign in to comment.