chore: update e2e/scoped-packages app

This commit is contained in:
vakrilov
2019-10-29 20:19:44 +02:00
parent 86339250d8
commit c067fbfcf3
2 changed files with 7 additions and 3 deletions

View File

@@ -13,9 +13,9 @@
"license": "SEE LICENSE IN <your-license-filename>",
"repository": "<fill-your-repository-here>",
"dependencies": {
"@nativescript/core": "file:../../dist/nativescript-core-6.2.0.tgz",
"@nativescript/core": "file:../../dist/nativescript-core-6.3.0.tgz",
"nativescript-theme-core": "~1.0.6",
"tns-core-modules": "file:../../dist/tns-core-modules-6.1.0.tgz"
"tns-core-modules": "file:../../dist/tns-core-modules-6.3.0.tgz"
},
"devDependencies": {
"nativescript-dev-webpack": "~1.2.0",

View File

@@ -45,6 +45,8 @@ module.exports = env => {
hmr, // --env.hmr,
unitTesting, // --env.unitTesting,
verbose, // --env.verbose
snapshotInDocker, // --env.snapshotInDocker
skipSnapshotTools // --env.skipSnapshotTools
} = env;
const isAnySourceMapEnabled = !!sourceMap || !!hiddenSourceMap;
const externals = nsWebpack.getConvertedExternals(env.externals);
@@ -183,7 +185,7 @@ module.exports = env => {
},
].filter(loader => !!loader)
},
{
test: /\.(ts|css|scss|html|xml)$/,
use: "nativescript-dev-webpack/hmr/hot-loader"
@@ -277,6 +279,8 @@ module.exports = env => {
],
projectRoot,
webpackConfig: config,
snapshotInDocker,
skipSnapshotTools
}));
}