diff --git a/demo/AngularApp/webpack.config.js b/demo/AngularApp/webpack.config.js index 9b7ba32b..bd41e4f5 100644 --- a/demo/AngularApp/webpack.config.js +++ b/demo/AngularApp/webpack.config.js @@ -62,7 +62,7 @@ module.exports = env => { const entryPath = `.${sep}${entryModule}`; const entries = { bundle: entryPath, application: "./application.android" }; if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; const ngCompilerTransformers = []; diff --git a/demo/JavaScriptApp/webpack.config.js b/demo/JavaScriptApp/webpack.config.js index 5e4e86fb..e6156dca 100644 --- a/demo/JavaScriptApp/webpack.config.js +++ b/demo/JavaScriptApp/webpack.config.js @@ -56,7 +56,7 @@ module.exports = env => { const entryPath = `.${sep}${entryModule}.js`; const entries = { bundle: entryPath, application: "./application.android" }; if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; let sourceMapFilename = nsWebpack.getSourceMapFilename(hiddenSourceMap, __dirname, dist); diff --git a/demo/TypeScriptApp/webpack.config.js b/demo/TypeScriptApp/webpack.config.js index 54ba0e56..64e87be0 100644 --- a/demo/TypeScriptApp/webpack.config.js +++ b/demo/TypeScriptApp/webpack.config.js @@ -60,7 +60,7 @@ module.exports = env => { const tsConfigPath = resolve(projectRoot, "tsconfig.tns.json"); if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; let sourceMapFilename = nsWebpack.getSourceMapFilename(hiddenSourceMap, __dirname, dist); diff --git a/templates/webpack.angular.js b/templates/webpack.angular.js index b79af66a..b32809fc 100644 --- a/templates/webpack.angular.js +++ b/templates/webpack.angular.js @@ -61,7 +61,7 @@ module.exports = env => { const entryPath = `.${sep}${entryModule}`; const entries = { bundle: entryPath }; if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; const ngCompilerTransformers = []; diff --git a/templates/webpack.javascript.js b/templates/webpack.javascript.js index f5deb23f..070ff65a 100644 --- a/templates/webpack.javascript.js +++ b/templates/webpack.javascript.js @@ -55,7 +55,7 @@ module.exports = env => { const entryPath = `.${sep}${entryModule}.js`; const entries = { bundle: entryPath }; if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; let sourceMapFilename = nsWebpack.getSourceMapFilename(hiddenSourceMap, __dirname, dist); diff --git a/templates/webpack.typescript.js b/templates/webpack.typescript.js index 90e6e839..e3b75ff7 100644 --- a/templates/webpack.typescript.js +++ b/templates/webpack.typescript.js @@ -59,7 +59,7 @@ module.exports = env => { const tsConfigPath = resolve(projectRoot, "tsconfig.tns.json"); if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; let sourceMapFilename = nsWebpack.getSourceMapFilename(hiddenSourceMap, __dirname, dist); diff --git a/templates/webpack.vue.js b/templates/webpack.vue.js index 4be5bf6e..f0eb6e9e 100644 --- a/templates/webpack.vue.js +++ b/templates/webpack.vue.js @@ -62,7 +62,7 @@ module.exports = env => { const entryPath = `.${sep}${entryModule}`; const entries = { bundle: entryPath }; if (platform === "ios") { - entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules.js"; + entries["tns_modules/tns-core-modules/inspector_modules"] = "inspector_modules"; }; console.log(`Bundling application for entryPath ${entryPath}...`);