This repository has been archived by the owner on Aug 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
bundle-config-loader.ts
102 lines (86 loc) · 3.01 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
100
101
102
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 and in tests folder
const defaultMatch = "(?<!\\bApp_Resources\\b.*)(?<!\\.\\/\\btests\\b\\/.*?)\\.(xml|css|js|(?<!\\.d\\.)ts|(?<!\\b_[\\w-]*\\.)scss)$";
const loader: loader.Loader = function (source, map) {
let {
angular = false,
loadCss = true,
platform,
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.__coreModulesLiveSync = global.__onLiveSync;
global.__onLiveSync = function () {
// handle hot updated on LiveSync
hmrUpdate();
};
global.hmrRefresh = function({ type, path } = {}) {
// the hot updates are applied, ask the modules to apply the changes
setTimeout(() => {
global.__coreModulesLiveSync({ type, path });
});
};
// handle hot updated on initial app start
hmrUpdate();
}
`;
let sourceModule = "tns-core-modules";
if (platform && platform !== "ios" && platform !== "android") {
sourceModule = `nativescript-platform-${platform}`;
}
source = `
require("${sourceModule}/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;