fix(webpack): devtools inspector_modules handling

This commit is contained in:
Nathan Walker
2020-10-30 11:45:06 -07:00
parent 9797dfd78d
commit 44f5bdd282
5 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ module.exports = env => {
const areCoreModulesExternal = Array.isArray(env.externals) && env.externals.some(e => e.indexOf("@nativescript") > -1);
if (platform === "ios" && !areCoreModulesExternal && !testing) {
entries["tns_modules/@nativescript/core/inspector_modules"] = "inspector_modules";
entries["tns_modules/inspector_modules"] = "inspector_modules";
};
console.log(`Bundling application for entryPath ${entryPath}...`);