diff --git a/e2e/scoped-packages/package.json b/e2e/scoped-packages/package.json index 5d877cdf5..5ccc47b88 100644 --- a/e2e/scoped-packages/package.json +++ b/e2e/scoped-packages/package.json @@ -13,9 +13,9 @@ "license": "SEE LICENSE IN ", "repository": "", "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", diff --git a/e2e/scoped-packages/webpack.config.js b/e2e/scoped-packages/webpack.config.js index 44a60a106..b50e4d93c 100644 --- a/e2e/scoped-packages/webpack.config.js +++ b/e2e/scoped-packages/webpack.config.js @@ -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 })); }