forked from NativeScript/nativescript-dev-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundle-config-loader.ts
99 lines (84 loc) · 2.79 KB
/
bundle-config-loader.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import * as unitTestingConfigLoader from "./unit-testing-config-loader";
import { loader } from "webpack";
import { getOptions } from "loader-utils";
import * as escapeRegExp from "escape-string-regexp";
// Matches all source, markup and style files that are not in App_Resources
const defaultMatch = "(?<!\\bApp_Resources\\b.*)\\.(xml|css|js|(?<!\\.d\\.)ts|(?<!\\b_[\\w-]*\\.)scss)$";
const loader: loader.Loader = function (source, map) {
let {
angular = false,
loadCss = true,
unitTesting,
projectRoot,
appFullPath,
registerModules,
ignoredFiles = []
} = getOptions(this);
if (!registerModules) {
registerModules = defaultMatch;
for (const key in ignoredFiles) {
registerModules = `(?<!${escapeRegExp(ignoredFiles[key])})` + registerModules;
}
registerModules = new RegExp(registerModules);
}
if (unitTesting) {
source = unitTestingConfigLoader({ appFullPath, projectRoot, angular, rootPagesRegExp: registerModules });
this.callback(null, source);
return;
}
const hmr = `
if (module.hot) {
const hmrUpdate = require("nativescript-dev-webpack/hmr").hmrUpdate;
global.__initialHmrUpdate = true;
global.__hmrSyncBackup = global.__onLiveSync;
global.__onLiveSync = function () {
hmrUpdate();
};
global.hmrRefresh = function({ type, path } = {}) {
if (global.__initialHmrUpdate) {
return;
}
setTimeout(() => {
global.__hmrSyncBackup({ type, path });
});
};
hmrUpdate().then(() => {
global.__initialHmrUpdate = false;
})
}
`;
source = `
require("tns-core-modules/bundle-entry-points");
${source}
`;
if (angular) {
source = `
${hmr}
${source}
`;
} else if (registerModules) {
source = `
${hmr}
const context = require.context("~/", true, ${registerModules});
global.registerWebpackModules(context);
if (module.hot) {
module.hot.accept(context.id, () => {
console.log("HMR: Accept module '" + context.id + "' from '" + module.id + "'");
});
}
${source}
`;
}
if (loadCss) {
source = `
require("${
angular ?
'nativescript-dev-webpack/load-application-css-angular' :
'nativescript-dev-webpack/load-application-css-regular'
}")();
${source}
`;
}
this.callback(null, source, map);
};
export default loader;