mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
fix(webpack5): include hmr handling only when enabled (#9685)
* fix(webpack): respect hmr flag * fix(webpack): ensure correct loader order is used * chore: cleanup Co-authored-by: Igor Randjelovic <rigor789@gmail.com>
This commit is contained in:
@ -84,23 +84,9 @@ exports[`angular configuration for android 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-hot-loader',
|
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('js') */
|
|
||||||
{
|
|
||||||
test: /\\\\.js$/,
|
|
||||||
exclude: [
|
|
||||||
/node_modules/
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('workers') */
|
/* config.module.rule('workers') */
|
||||||
{
|
{
|
||||||
test: /\\\\.(js|ts)$/,
|
test: /\\\\.(js|ts)$/,
|
||||||
@ -111,6 +97,13 @@ exports[`angular configuration for android 1`] = `
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
/* config.module.rule('js') */
|
||||||
|
{
|
||||||
|
test: /\\\\.js$/,
|
||||||
|
exclude: [
|
||||||
|
/node_modules/
|
||||||
|
]
|
||||||
|
},
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -472,23 +465,9 @@ exports[`angular configuration for ios 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-hot-loader',
|
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('js') */
|
|
||||||
{
|
|
||||||
test: /\\\\.js$/,
|
|
||||||
exclude: [
|
|
||||||
/node_modules/
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('workers') */
|
/* config.module.rule('workers') */
|
||||||
{
|
{
|
||||||
test: /\\\\.(js|ts)$/,
|
test: /\\\\.(js|ts)$/,
|
||||||
@ -499,6 +478,13 @@ exports[`angular configuration for ios 1`] = `
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
/* config.module.rule('js') */
|
||||||
|
{
|
||||||
|
test: /\\\\.js$/,
|
||||||
|
exclude: [
|
||||||
|
/node_modules/
|
||||||
|
]
|
||||||
|
},
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
|
@ -72,13 +72,16 @@ exports[`base configuration for android 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -110,16 +113,6 @@ exports[`base configuration for android 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -383,13 +376,16 @@ exports[`base configuration for ios 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -421,16 +417,6 @@ exports[`base configuration for ios 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
|
@ -72,13 +72,16 @@ exports[`javascript configuration for android 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -110,16 +113,6 @@ exports[`javascript configuration for android 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -183,23 +176,6 @@ exports[`javascript configuration for android 1`] = `
|
|||||||
loader: 'sass-loader'
|
loader: 'sass-loader'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
/* config.module.rule('hmr-core') */
|
|
||||||
{
|
|
||||||
test: /\\\\.js$/,
|
|
||||||
exclude: [
|
|
||||||
/node_modules/,
|
|
||||||
'__jest__/src/app.js'
|
|
||||||
],
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('hmr-core').use('nativescript-hot-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-hot-loader',
|
|
||||||
options: {
|
|
||||||
appPath: '__jest__/src'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -409,13 +385,16 @@ exports[`javascript configuration for ios 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -447,16 +426,6 @@ exports[`javascript configuration for ios 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -520,23 +489,6 @@ exports[`javascript configuration for ios 1`] = `
|
|||||||
loader: 'sass-loader'
|
loader: 'sass-loader'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
/* config.module.rule('hmr-core') */
|
|
||||||
{
|
|
||||||
test: /\\\\.js$/,
|
|
||||||
exclude: [
|
|
||||||
/node_modules/,
|
|
||||||
'__jest__/src/app.js'
|
|
||||||
],
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('hmr-core').use('nativescript-hot-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-hot-loader',
|
|
||||||
options: {
|
|
||||||
appPath: '__jest__/src'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -85,6 +85,16 @@ exports[`react configuration > android > adds ReactRefreshWebpackPlugin when HMR
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
|
{
|
||||||
|
loader: 'nativescript-worker-loader'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
/* config.module.rule('ts') */
|
/* config.module.rule('ts') */
|
||||||
{
|
{
|
||||||
test: [
|
test: [
|
||||||
@ -125,16 +135,6 @@ exports[`react configuration > android > adds ReactRefreshWebpackPlugin when HMR
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -408,13 +408,16 @@ exports[`react configuration > android > base config 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -447,16 +450,6 @@ exports[`react configuration > android > base config 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -729,6 +722,16 @@ exports[`react configuration > ios > adds ReactRefreshWebpackPlugin when HMR ena
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
|
{
|
||||||
|
loader: 'nativescript-worker-loader'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
/* config.module.rule('ts') */
|
/* config.module.rule('ts') */
|
||||||
{
|
{
|
||||||
test: [
|
test: [
|
||||||
@ -769,16 +772,6 @@ exports[`react configuration > ios > adds ReactRefreshWebpackPlugin when HMR ena
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -1053,13 +1046,16 @@ exports[`react configuration > ios > base config 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -1092,16 +1088,6 @@ exports[`react configuration > ios > base config 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
|
@ -76,13 +76,16 @@ exports[`svelte configuration for android 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts|svelte)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -114,16 +117,6 @@ exports[`svelte configuration for android 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts|svelte)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -408,13 +401,16 @@ exports[`svelte configuration for ios 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts|svelte)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -446,16 +442,6 @@ exports[`svelte configuration for ios 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts|svelte)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
|
@ -72,13 +72,16 @@ exports[`typescript configuration for android 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -110,16 +113,6 @@ exports[`typescript configuration for android 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -183,23 +176,6 @@ exports[`typescript configuration for android 1`] = `
|
|||||||
loader: 'sass-loader'
|
loader: 'sass-loader'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
/* config.module.rule('hmr-core') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
exclude: [
|
|
||||||
/node_modules/,
|
|
||||||
'__jest__/src/app.js'
|
|
||||||
],
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('hmr-core').use('nativescript-hot-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-hot-loader',
|
|
||||||
options: {
|
|
||||||
appPath: '__jest__/src'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -409,13 +385,16 @@ exports[`typescript configuration for ios 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -447,16 +426,6 @@ exports[`typescript configuration for ios 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -520,23 +489,6 @@ exports[`typescript configuration for ios 1`] = `
|
|||||||
loader: 'sass-loader'
|
loader: 'sass-loader'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
/* config.module.rule('hmr-core') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
exclude: [
|
|
||||||
/node_modules/,
|
|
||||||
'__jest__/src/app.js'
|
|
||||||
],
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('hmr-core').use('nativescript-hot-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-hot-loader',
|
|
||||||
options: {
|
|
||||||
appPath: '__jest__/src'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -75,13 +75,16 @@ exports[`vue configuration for android 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'android'
|
platform: 'android'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -116,16 +119,6 @@ exports[`vue configuration for android 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
@ -420,13 +413,16 @@ exports[`vue configuration for ios 1`] = `
|
|||||||
options: {
|
options: {
|
||||||
platform: 'ios'
|
platform: 'ios'
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
/* config.module.rule('bundle').use('nativescript-hot-loader') */
|
]
|
||||||
|
},
|
||||||
|
/* config.module.rule('workers') */
|
||||||
|
{
|
||||||
|
test: /\\\\.(js|ts)$/,
|
||||||
|
use: [
|
||||||
|
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
||||||
{
|
{
|
||||||
loader: 'nativescript-hot-loader',
|
loader: 'nativescript-worker-loader'
|
||||||
options: {
|
|
||||||
injectHMRRuntime: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -461,16 +457,6 @@ exports[`vue configuration for ios 1`] = `
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
/* config.module.rule('workers') */
|
|
||||||
{
|
|
||||||
test: /\\\\.(js|ts)$/,
|
|
||||||
use: [
|
|
||||||
/* config.module.rule('workers').use('nativescript-worker-loader') */
|
|
||||||
{
|
|
||||||
loader: 'nativescript-worker-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
/* config.module.rule('xml') */
|
/* config.module.rule('xml') */
|
||||||
{
|
{
|
||||||
test: /\\\\.xml$/,
|
test: /\\\\.xml$/,
|
||||||
|
@ -198,12 +198,24 @@ export default function (config: Config, env: IWebpackEnv = _env): Config {
|
|||||||
.options({
|
.options({
|
||||||
platform,
|
platform,
|
||||||
})
|
})
|
||||||
.end()
|
.end();
|
||||||
.use('nativescript-hot-loader')
|
|
||||||
.loader('nativescript-hot-loader')
|
config.when(env.hmr, (config) => {
|
||||||
.options({
|
config.module
|
||||||
injectHMRRuntime: true,
|
.rule('bundle')
|
||||||
});
|
.use('nativescript-hot-loader')
|
||||||
|
.loader('nativescript-hot-loader')
|
||||||
|
.options({
|
||||||
|
injectHMRRuntime: true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// worker-loader should be declared before ts-loader
|
||||||
|
config.module
|
||||||
|
.rule('workers')
|
||||||
|
.test(/\.(js|ts)$/)
|
||||||
|
.use('nativescript-worker-loader')
|
||||||
|
.loader('nativescript-worker-loader');
|
||||||
|
|
||||||
// set up ts support
|
// set up ts support
|
||||||
config.module
|
config.module
|
||||||
@ -249,12 +261,6 @@ export default function (config: Config, env: IWebpackEnv = _env): Config {
|
|||||||
.exclude.add(/node_modules/)
|
.exclude.add(/node_modules/)
|
||||||
.end();
|
.end();
|
||||||
|
|
||||||
config.module
|
|
||||||
.rule('workers')
|
|
||||||
.test(/\.(js|ts)$/)
|
|
||||||
.use('nativescript-worker-loader')
|
|
||||||
.loader('nativescript-worker-loader');
|
|
||||||
|
|
||||||
// config.resolve.extensions.add('.xml');
|
// config.resolve.extensions.add('.xml');
|
||||||
// set up xml
|
// set up xml
|
||||||
config.module
|
config.module
|
||||||
|
@ -34,18 +34,21 @@ export default function (config: Config, env: IWebpackEnv = _env): Config {
|
|||||||
virtualEntryPath
|
virtualEntryPath
|
||||||
);
|
);
|
||||||
|
|
||||||
// set up core HMR
|
config.when(env.hmr, (config) => {
|
||||||
config.module
|
// set up core HMR
|
||||||
.rule('hmr-core')
|
config.module
|
||||||
.test(/\.js$/)
|
.rule('hmr-core')
|
||||||
.exclude.add(/node_modules/)
|
.before('js')
|
||||||
.add(entryPath)
|
.test(/\.js$/)
|
||||||
.end()
|
.exclude.add(/node_modules/)
|
||||||
.use('nativescript-hot-loader')
|
.add(entryPath)
|
||||||
.loader('nativescript-hot-loader')
|
.end()
|
||||||
.options({
|
.use('nativescript-hot-loader')
|
||||||
appPath: getEntryDirPath(),
|
.loader('nativescript-hot-loader')
|
||||||
});
|
.options({
|
||||||
|
appPath: getEntryDirPath(),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
@ -34,18 +34,21 @@ export default function (config: Config, env: IWebpackEnv = _env): Config {
|
|||||||
virtualEntryPath
|
virtualEntryPath
|
||||||
);
|
);
|
||||||
|
|
||||||
// set up core HMR
|
config.when(env.hmr, (config) => {
|
||||||
config.module
|
// set up core HMR
|
||||||
.rule('hmr-core')
|
config.module
|
||||||
.test(/\.(js|ts)$/)
|
.rule('hmr-core')
|
||||||
.exclude.add(/node_modules/)
|
.before('ts')
|
||||||
.add(entryPath)
|
.test(/\.(js|ts)$/)
|
||||||
.end()
|
.exclude.add(/node_modules/)
|
||||||
.use('nativescript-hot-loader')
|
.add(entryPath)
|
||||||
.loader('nativescript-hot-loader')
|
.end()
|
||||||
.options({
|
.use('nativescript-hot-loader')
|
||||||
appPath: getEntryDirPath(),
|
.loader('nativescript-hot-loader')
|
||||||
});
|
.options({
|
||||||
|
appPath: getEntryDirPath(),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user