@flatjs/evolve 1.8.1-next.66 → 1.8.1-next.67
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +20 -0
- package/dist/constants.js +17 -1
- package/dist/create-webpack/create-externals.js +6 -1
- package/dist/create-webpack/create-optimization.js +29 -1
- package/dist/create-webpack/create-output.js +35 -1
- package/dist/create-webpack/create-performance.js +7 -1
- package/dist/create-webpack/create-plugins.js +78 -1
- package/dist/create-webpack/create-resolve.js +31 -1
- package/dist/create-webpack/create-rule-sets.js +16 -1
- package/dist/create-webpack/load-webpack-config.js +55 -1
- package/dist/create-webpack/rule-sets/constants.js +3 -1
- package/dist/create-webpack/rule-sets/rule-assets.js +44 -1
- package/dist/create-webpack/rule-sets/rule-css.js +84 -1
- package/dist/create-webpack/rule-sets/rule-less.js +45 -1
- package/dist/create-webpack/rule-sets/rule-scripts.js +27 -1
- package/dist/create-webpack/rule-sets/rule-svg-icon.js +25 -1
- package/dist/create-webpack/rule-sets/rule-utils.js +10 -1
- package/dist/create-webpack/types.js +1 -1
- package/dist/default-options.js +79 -1
- package/dist/define-config/define-config.js +4 -1
- package/dist/define-config/index.js +1 -1
- package/dist/dev-server/add-compiler-to-dev-server.js +47 -1
- package/dist/dev-server/create-app-page-route.js +11 -1
- package/dist/dev-server/create-dev-server-compiler-tasks.js +51 -1
- package/dist/dev-server/create-dev-server-entries.js +27 -1
- package/dist/dev-server/create-dev-server.js +23 -1
- package/dist/dev-server/index.js +6 -1
- package/dist/dev-server/middlewares/create-page-middleware.js +164 -1
- package/dist/dev-server/middlewares/create-public-assets-middleware.js +25 -1
- package/dist/dev-server/middlewares/index.js +2 -1
- package/dist/errors/evolve-build-error.js +10 -1
- package/dist/helpers/allow-px2rem-for-module.js +6 -1
- package/dist/helpers/assert-only-single-entry-item.js +23 -1
- package/dist/helpers/chunk-entry-map.js +21 -1
- package/dist/helpers/enable-bundle-hashname-for-module.js +6 -1
- package/dist/helpers/filter-actived-entries.d.ts +1 -1
- package/dist/helpers/filter-actived-entries.js +41 -1
- package/dist/helpers/get-bundle-file-name.js +23 -1
- package/dist/helpers/get-git-root.js +4 -1
- package/dist/helpers/get-html-plugin-config.d.ts +9 -1
- package/dist/helpers/get-html-plugin-config.js +47 -1
- package/dist/helpers/get-max-process-tasks.d.ts +1 -0
- package/dist/helpers/get-max-process-tasks.js +7 -0
- package/dist/helpers/get-pacakge-dir.js +13 -1
- package/dist/helpers/index.js +15 -1
- package/dist/helpers/merge-babel-options.js +45 -1
- package/dist/helpers/normalize-entry-map.js +38 -1
- package/dist/helpers/open-page.js +15 -1
- package/dist/helpers/print-log.js +49 -1
- package/dist/helpers/refresh-evolve-mock-options.js +23 -1
- package/dist/helpers/resolve-entry-map-input-files.js +20 -1
- package/dist/helpers/script-injects.js +39 -1
- package/dist/helpers/should-enable-react-fast-refresh.js +8 -1
- package/dist/helpers/split-to-multi-compiler.js +22 -1
- package/dist/index.js +5 -1
- package/dist/load-config/index.js +1 -1
- package/dist/load-config/load-evolve-config.js +35 -1
- package/dist/main/env-verify.js +21 -1
- package/dist/main/index.js +4 -1
- package/dist/main/prepare-build.d.ts +4 -8
- package/dist/main/prepare-build.js +38 -1
- package/dist/main/prepare-serve.js +36 -1
- package/dist/main/prepare-static.js +28 -1
- package/dist/main/start-build-dynamic.d.ts +2 -1
- package/dist/main/start-build-dynamic.js +144 -1
- package/dist/main/start-build-worker.d.ts +14 -0
- package/dist/main/start-build-worker.js +41 -0
- package/dist/main/start-build.d.ts +1 -8
- package/dist/main/start-build.js +49 -1
- package/dist/main/start-one-entry-build.d.ts +13 -0
- package/dist/main/start-one-entry-build.js +35 -0
- package/dist/main/start-serve.js +32 -1
- package/dist/main/start-static.js +16 -1
- package/dist/minimizer/create-minimizers.js +25 -1
- package/dist/minimizer/default-options.js +14 -1
- package/dist/minimizer/image-minimizer.js +56 -1
- package/dist/minimizer/index.js +1 -1
- package/dist/minimizer/terser-minimizer.js +15 -3
- package/dist/minimizer/types.js +1 -1
- package/dist/plugins/clean-webpack/clean-webpack-plugin.js +173 -1
- package/dist/plugins/clean-webpack/index.js +22 -1
- package/dist/plugins/define-variable/define-variable-plugin.js +21 -1
- package/dist/plugins/define-variable/index.js +1 -1
- package/dist/plugins/html-inject-scripts/plugin-html-inject-script.js +27 -1
- package/dist/plugins/module-federation/external-template-remotes.js +92 -1
- package/dist/plugins/module-federation/index.js +1 -1
- package/dist/plugins/module-federation/module-federation.js +98 -1
- package/dist/plugins/multi-html/index.js +15 -1
- package/dist/plugins/multi-html/multi-html-cdn-plugin.js +84 -1
- package/dist/plugins/multi-html/multi-html-plugin.js +70 -1
- package/dist/types/index.js +8 -1
- package/dist/types/types-ci.js +1 -1
- package/dist/types/types-dev-server.js +1 -1
- package/dist/types/types-entry-map.js +1 -1
- package/dist/types/types-federation.js +1 -1
- package/dist/types/types-loader-options.js +1 -1
- package/dist/types/types-modular-import.js +1 -1
- package/dist/types/types-multi-html.d.ts +6 -5
- package/dist/types/types-multi-html.js +1 -1
- package/dist/types/types-options.js +1 -1
- package/dist/types/types-plugin-options.js +1 -1
- package/dist/types/types-webpack.d.ts +1 -1
- package/dist/types/types-webpack.js +1 -1
- package/package.json +14 -12
- package/templates/html-plugin/index-dev.html +31 -38
- package/templates/html-plugin/index-inte.html +31 -38
- package/templates/html-plugin/index-inte2.html +31 -38
- package/templates/html-plugin/index-inte3.html +31 -38
- package/templates/html-plugin/index-inte4.html +31 -38
- package/templates/html-plugin/index-me.html +31 -38
- package/templates/html-plugin/index-prod.html +31 -38
- package/templates/html-plugin/index-rc.html +31 -38
- package/templates/html-plugin/index-uat.html +31 -38
- package/templates/module.html +40 -55
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { type HtmlPluginConfigTokenType } from '../helpers/get-html-plugin-config.js';
|
1
2
|
export declare type EvolveMultiCdnEnvType = 'me' | 'dev' | 'uat' | 'inte' | 'inte2' | 'inte3' | 'inte4' | 'rc' | 'prod' | 'ntv';
|
2
3
|
export type EvolveMultiCDNConfig = {
|
3
4
|
[key in EvolveMultiCdnEnvType]?: string[];
|
@@ -40,16 +41,16 @@ export declare type MultiHtmlCDNEntryItem = {
|
|
40
41
|
* Allow us customized inline scripts into compiled html template.
|
41
42
|
* @default []
|
42
43
|
*/
|
43
|
-
inlineScripts?: string[]
|
44
|
+
inlineScripts?: HtmlPluginConfigTokenType<string[]>;
|
44
45
|
/**
|
45
46
|
* The customized html tags should be inject to `<header />`
|
46
47
|
*/
|
47
|
-
headBeforeHtmlTags?: string[]
|
48
|
+
headBeforeHtmlTags?: HtmlPluginConfigTokenType<string[]>;
|
48
49
|
/**
|
49
50
|
* The ordered styles will be injected start of html head.
|
50
51
|
* @default []
|
51
52
|
*/
|
52
|
-
headBeforeStyles?: string[]
|
53
|
+
headBeforeStyles?: HtmlPluginConfigTokenType<string[]>;
|
53
54
|
/**
|
54
55
|
* The ordered scripts will be injected before html head.
|
55
56
|
* @default [
|
@@ -59,12 +60,12 @@ export declare type MultiHtmlCDNEntryItem = {
|
|
59
60
|
* `https://unpkg.com/react-router-dom@5.2.0/umd/react-router-dom.min.js`
|
60
61
|
* ]
|
61
62
|
*/
|
62
|
-
headBeforeScripts?: string[]
|
63
|
+
headBeforeScripts?: HtmlPluginConfigTokenType<string[]>;
|
63
64
|
/**
|
64
65
|
* The ordered scripts will be injected end of html body.
|
65
66
|
* @default []
|
66
67
|
*/
|
67
|
-
bodyAfterScripts?: string[]
|
68
|
+
bodyAfterScripts?: HtmlPluginConfigTokenType<string[]>;
|
68
69
|
/**
|
69
70
|
* Give `env` list to exclude from `multi-cdn` plugin.
|
70
71
|
* Normally for `me`, `dev`,`uat`, `ntv` env we should use relative assets path instead cdn.
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export{};
|
1
|
+
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@flatjs/evolve",
|
3
|
-
"version": "1.8.1-next.
|
3
|
+
"version": "1.8.1-next.67",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"exports": {
|
@@ -22,7 +22,7 @@
|
|
22
22
|
],
|
23
23
|
"scripts": {
|
24
24
|
"serve": "yarn ts-node-esm ./tests/dev-server/dev-server.ts",
|
25
|
-
"build": "rimraf dist && tsc -p ./tsconfig.build.json
|
25
|
+
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
|
26
26
|
"?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
|
27
27
|
"build-release": "yarn build && rimraf ./_release && yarn pack && mkdir ./_release && tar zxvf ./package.tgz --directory ./_release && rm ./package.tgz",
|
28
28
|
"minify": "node ../../scripts/minify.mjs --dest=dist",
|
@@ -40,12 +40,13 @@
|
|
40
40
|
"@armit/file-utility": "^0.0.26",
|
41
41
|
"@armit/git": "^0.0.31",
|
42
42
|
"@armit/package": "^0.0.41",
|
43
|
+
"@armit/worker-threads": "^0.0.3",
|
43
44
|
"@babel/core": "7.22.5",
|
44
|
-
"@flatjs/common": "1.8.1-next.
|
45
|
-
"@flatjs/evolve-preset-babel": "1.8.1-next.
|
46
|
-
"@flatjs/forge-postcss-plugin-pixel": "1.8.1-next.
|
47
|
-
"@flatjs/graph": "1.8.1-next.
|
48
|
-
"@flatjs/mock": "1.8.1-next.
|
45
|
+
"@flatjs/common": "1.8.1-next.30",
|
46
|
+
"@flatjs/evolve-preset-babel": "1.8.1-next.15",
|
47
|
+
"@flatjs/forge-postcss-plugin-pixel": "1.8.1-next.30",
|
48
|
+
"@flatjs/graph": "1.8.1-next.36",
|
49
|
+
"@flatjs/mock": "1.8.1-next.55",
|
49
50
|
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
|
50
51
|
"@types/babel__core": "7.20.1",
|
51
52
|
"babel-loader": "9.1.2",
|
@@ -62,9 +63,9 @@
|
|
62
63
|
"image-minimizer-webpack-plugin": "3.8.3",
|
63
64
|
"less": "4.1.3",
|
64
65
|
"less-loader": "11.1.3",
|
66
|
+
"listr": "0.14.3",
|
65
67
|
"lodash": "4.17.21",
|
66
68
|
"mini-css-extract-plugin": "2.7.6",
|
67
|
-
"ora": "6.3.1",
|
68
69
|
"postcss": "8.4.24",
|
69
70
|
"postcss-loader": "7.3.3",
|
70
71
|
"react-refresh": "0.14.0",
|
@@ -72,17 +73,18 @@
|
|
72
73
|
"terser-webpack-plugin": "5.3.9",
|
73
74
|
"tsconfig-paths-webpack-plugin": "4.0.1",
|
74
75
|
"type-fest": "^3.12.0",
|
75
|
-
"webpack": "5.88.
|
76
|
+
"webpack": "5.88.1",
|
76
77
|
"webpack-bundle-analyzer": "4.9.0",
|
77
78
|
"webpack-dev-server": "4.15.1",
|
78
79
|
"webpack-sources": "3.2.3"
|
79
80
|
},
|
80
81
|
"devDependencies": {
|
81
82
|
"@armit/eslint-config-bases": "^0.0.21",
|
82
|
-
"@flatjs/testing": "1.8.1-next.
|
83
|
-
"@swc/core": "1.3.
|
83
|
+
"@flatjs/testing": "1.8.1-next.31",
|
84
|
+
"@swc/core": "1.3.67",
|
84
85
|
"@types/express": "4.17.17",
|
85
|
-
"@types/
|
86
|
+
"@types/listr": "0.14.4",
|
87
|
+
"@types/node": "20.3.2",
|
86
88
|
"@vitest/coverage-istanbul": "0.32.2",
|
87
89
|
"@vitest/ui": "0.32.2",
|
88
90
|
"eslint": "8.43.0",
|
@@ -17,48 +17,41 @@
|
|
17
17
|
/>
|
18
18
|
<title><%= title %></title>
|
19
19
|
|
20
|
-
<% if (headBeforeHtmlTags) { %>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<% if (inlineScripts) { %>
|
27
|
-
<script>
|
28
|
-
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
29
|
-
<%= inlineScripts[index] %>
|
30
|
-
<% } %>
|
31
|
-
</script>
|
32
|
-
<% } %>
|
33
|
-
|
34
|
-
<% if (viewport) { %>
|
35
|
-
<script><%= viewport %></script>
|
36
|
-
<% } %>
|
37
|
-
|
38
|
-
<% if (favicon) { %>
|
39
|
-
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
40
|
-
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
41
|
-
<% } %>
|
42
|
-
|
43
|
-
<% if (headBeforeStyles) { %>
|
44
|
-
<% for (let index = 0; index < headBeforeStyles.length; index++) { %>
|
45
|
-
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
46
|
-
<% } %>
|
47
|
-
<% } %>
|
48
|
-
|
49
|
-
<% if (headBeforeScripts) { %>
|
50
|
-
<% for (let index = 0; index < headBeforeScripts.length; index++) { %>
|
51
|
-
<script crossorigin="anonymous" src="<%= headBeforeScripts[index]%>"></script>
|
20
|
+
<% if (headBeforeHtmlTags) { %> <% for (let index = 0; index <
|
21
|
+
headBeforeHtmlTags.length; index++) { %> <%= headBeforeHtmlTags[index] %> <%
|
22
|
+
} %> <% } %> <% if (inlineScripts) { %>
|
23
|
+
<script>
|
24
|
+
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
25
|
+
<%= inlineScripts[index] %>
|
52
26
|
<% } %>
|
53
|
-
|
27
|
+
</script>
|
28
|
+
<% } %> <% if (viewport) { %>
|
29
|
+
<script>
|
30
|
+
<%= viewport %>
|
31
|
+
</script>
|
32
|
+
<% } %> <% if (favicon) { %>
|
33
|
+
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
34
|
+
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
35
|
+
<% } %> <% if (headBeforeStyles) { %> <% for (let index = 0; index <
|
36
|
+
headBeforeStyles.length; index++) { %>
|
37
|
+
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
38
|
+
<% } %> <% } %> <% if (headBeforeScripts) { %> <% for (let index = 0; index
|
39
|
+
< headBeforeScripts.length; index++) { %>
|
40
|
+
<script
|
41
|
+
crossorigin="anonymous"
|
42
|
+
src="<%= headBeforeScripts[index]%>"
|
43
|
+
></script>
|
44
|
+
<% } %> <% } %>
|
54
45
|
</head>
|
55
46
|
|
56
47
|
<body>
|
57
48
|
<div id="app"></div>
|
58
|
-
<% if (bodyAfterScripts) { %>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
49
|
+
<% if (bodyAfterScripts) { %> <% for (let index = 0; index <
|
50
|
+
bodyAfterScripts.length; index++) { %>
|
51
|
+
<script
|
52
|
+
crossorigin="anonymous"
|
53
|
+
src="<%= bodyAfterScripts[index]%>"
|
54
|
+
></script>
|
55
|
+
<% } %> <% } %>
|
63
56
|
</body>
|
64
57
|
</html>
|
@@ -17,48 +17,41 @@
|
|
17
17
|
/>
|
18
18
|
<title><%= title %></title>
|
19
19
|
|
20
|
-
<% if (headBeforeHtmlTags) { %>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<% if (inlineScripts) { %>
|
27
|
-
<script>
|
28
|
-
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
29
|
-
<%= inlineScripts[index] %>
|
30
|
-
<% } %>
|
31
|
-
</script>
|
32
|
-
<% } %>
|
33
|
-
|
34
|
-
<% if (viewport) { %>
|
35
|
-
<script><%= viewport %></script>
|
36
|
-
<% } %>
|
37
|
-
|
38
|
-
<% if (favicon) { %>
|
39
|
-
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
40
|
-
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
41
|
-
<% } %>
|
42
|
-
|
43
|
-
<% if (headBeforeStyles) { %>
|
44
|
-
<% for (let index = 0; index < headBeforeStyles.length; index++) { %>
|
45
|
-
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
46
|
-
<% } %>
|
47
|
-
<% } %>
|
48
|
-
|
49
|
-
<% if (headBeforeScripts) { %>
|
50
|
-
<% for (let index = 0; index < headBeforeScripts.length; index++) { %>
|
51
|
-
<script crossorigin="anonymous" src="<%= headBeforeScripts[index]%>"></script>
|
20
|
+
<% if (headBeforeHtmlTags) { %> <% for (let index = 0; index <
|
21
|
+
headBeforeHtmlTags.length; index++) { %> <%= headBeforeHtmlTags[index] %> <%
|
22
|
+
} %> <% } %> <% if (inlineScripts) { %>
|
23
|
+
<script>
|
24
|
+
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
25
|
+
<%= inlineScripts[index] %>
|
52
26
|
<% } %>
|
53
|
-
|
27
|
+
</script>
|
28
|
+
<% } %> <% if (viewport) { %>
|
29
|
+
<script>
|
30
|
+
<%= viewport %>
|
31
|
+
</script>
|
32
|
+
<% } %> <% if (favicon) { %>
|
33
|
+
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
34
|
+
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
35
|
+
<% } %> <% if (headBeforeStyles) { %> <% for (let index = 0; index <
|
36
|
+
headBeforeStyles.length; index++) { %>
|
37
|
+
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
38
|
+
<% } %> <% } %> <% if (headBeforeScripts) { %> <% for (let index = 0; index
|
39
|
+
< headBeforeScripts.length; index++) { %>
|
40
|
+
<script
|
41
|
+
crossorigin="anonymous"
|
42
|
+
src="<%= headBeforeScripts[index]%>"
|
43
|
+
></script>
|
44
|
+
<% } %> <% } %>
|
54
45
|
</head>
|
55
46
|
|
56
47
|
<body>
|
57
48
|
<div id="app"></div>
|
58
|
-
<% if (bodyAfterScripts) { %>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
49
|
+
<% if (bodyAfterScripts) { %> <% for (let index = 0; index <
|
50
|
+
bodyAfterScripts.length; index++) { %>
|
51
|
+
<script
|
52
|
+
crossorigin="anonymous"
|
53
|
+
src="<%= bodyAfterScripts[index]%>"
|
54
|
+
></script>
|
55
|
+
<% } %> <% } %>
|
63
56
|
</body>
|
64
57
|
</html>
|
@@ -17,48 +17,41 @@
|
|
17
17
|
/>
|
18
18
|
<title><%= title %></title>
|
19
19
|
|
20
|
-
<% if (headBeforeHtmlTags) { %>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<% if (inlineScripts) { %>
|
27
|
-
<script>
|
28
|
-
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
29
|
-
<%= inlineScripts[index] %>
|
30
|
-
<% } %>
|
31
|
-
</script>
|
32
|
-
<% } %>
|
33
|
-
|
34
|
-
<% if (viewport) { %>
|
35
|
-
<script><%= viewport %></script>
|
36
|
-
<% } %>
|
37
|
-
|
38
|
-
<% if (favicon) { %>
|
39
|
-
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
40
|
-
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
41
|
-
<% } %>
|
42
|
-
|
43
|
-
<% if (headBeforeStyles) { %>
|
44
|
-
<% for (let index = 0; index < headBeforeStyles.length; index++) { %>
|
45
|
-
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
46
|
-
<% } %>
|
47
|
-
<% } %>
|
48
|
-
|
49
|
-
<% if (headBeforeScripts) { %>
|
50
|
-
<% for (let index = 0; index < headBeforeScripts.length; index++) { %>
|
51
|
-
<script crossorigin="anonymous" src="<%= headBeforeScripts[index]%>"></script>
|
20
|
+
<% if (headBeforeHtmlTags) { %> <% for (let index = 0; index <
|
21
|
+
headBeforeHtmlTags.length; index++) { %> <%= headBeforeHtmlTags[index] %> <%
|
22
|
+
} %> <% } %> <% if (inlineScripts) { %>
|
23
|
+
<script>
|
24
|
+
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
25
|
+
<%= inlineScripts[index] %>
|
52
26
|
<% } %>
|
53
|
-
|
27
|
+
</script>
|
28
|
+
<% } %> <% if (viewport) { %>
|
29
|
+
<script>
|
30
|
+
<%= viewport %>
|
31
|
+
</script>
|
32
|
+
<% } %> <% if (favicon) { %>
|
33
|
+
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
34
|
+
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
35
|
+
<% } %> <% if (headBeforeStyles) { %> <% for (let index = 0; index <
|
36
|
+
headBeforeStyles.length; index++) { %>
|
37
|
+
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
38
|
+
<% } %> <% } %> <% if (headBeforeScripts) { %> <% for (let index = 0; index
|
39
|
+
< headBeforeScripts.length; index++) { %>
|
40
|
+
<script
|
41
|
+
crossorigin="anonymous"
|
42
|
+
src="<%= headBeforeScripts[index]%>"
|
43
|
+
></script>
|
44
|
+
<% } %> <% } %>
|
54
45
|
</head>
|
55
46
|
|
56
47
|
<body>
|
57
48
|
<div id="app"></div>
|
58
|
-
<% if (bodyAfterScripts) { %>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
49
|
+
<% if (bodyAfterScripts) { %> <% for (let index = 0; index <
|
50
|
+
bodyAfterScripts.length; index++) { %>
|
51
|
+
<script
|
52
|
+
crossorigin="anonymous"
|
53
|
+
src="<%= bodyAfterScripts[index]%>"
|
54
|
+
></script>
|
55
|
+
<% } %> <% } %>
|
63
56
|
</body>
|
64
57
|
</html>
|
@@ -17,48 +17,41 @@
|
|
17
17
|
/>
|
18
18
|
<title><%= title %></title>
|
19
19
|
|
20
|
-
<% if (headBeforeHtmlTags) { %>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<% if (inlineScripts) { %>
|
27
|
-
<script>
|
28
|
-
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
29
|
-
<%= inlineScripts[index] %>
|
30
|
-
<% } %>
|
31
|
-
</script>
|
32
|
-
<% } %>
|
33
|
-
|
34
|
-
<% if (viewport) { %>
|
35
|
-
<script><%= viewport %></script>
|
36
|
-
<% } %>
|
37
|
-
|
38
|
-
<% if (favicon) { %>
|
39
|
-
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
40
|
-
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
41
|
-
<% } %>
|
42
|
-
|
43
|
-
<% if (headBeforeStyles) { %>
|
44
|
-
<% for (let index = 0; index < headBeforeStyles.length; index++) { %>
|
45
|
-
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
46
|
-
<% } %>
|
47
|
-
<% } %>
|
48
|
-
|
49
|
-
<% if (headBeforeScripts) { %>
|
50
|
-
<% for (let index = 0; index < headBeforeScripts.length; index++) { %>
|
51
|
-
<script crossorigin="anonymous" src="<%= headBeforeScripts[index]%>"></script>
|
20
|
+
<% if (headBeforeHtmlTags) { %> <% for (let index = 0; index <
|
21
|
+
headBeforeHtmlTags.length; index++) { %> <%= headBeforeHtmlTags[index] %> <%
|
22
|
+
} %> <% } %> <% if (inlineScripts) { %>
|
23
|
+
<script>
|
24
|
+
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
25
|
+
<%= inlineScripts[index] %>
|
52
26
|
<% } %>
|
53
|
-
|
27
|
+
</script>
|
28
|
+
<% } %> <% if (viewport) { %>
|
29
|
+
<script>
|
30
|
+
<%= viewport %>
|
31
|
+
</script>
|
32
|
+
<% } %> <% if (favicon) { %>
|
33
|
+
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
34
|
+
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
35
|
+
<% } %> <% if (headBeforeStyles) { %> <% for (let index = 0; index <
|
36
|
+
headBeforeStyles.length; index++) { %>
|
37
|
+
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
38
|
+
<% } %> <% } %> <% if (headBeforeScripts) { %> <% for (let index = 0; index
|
39
|
+
< headBeforeScripts.length; index++) { %>
|
40
|
+
<script
|
41
|
+
crossorigin="anonymous"
|
42
|
+
src="<%= headBeforeScripts[index]%>"
|
43
|
+
></script>
|
44
|
+
<% } %> <% } %>
|
54
45
|
</head>
|
55
46
|
|
56
47
|
<body>
|
57
48
|
<div id="app"></div>
|
58
|
-
<% if (bodyAfterScripts) { %>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
49
|
+
<% if (bodyAfterScripts) { %> <% for (let index = 0; index <
|
50
|
+
bodyAfterScripts.length; index++) { %>
|
51
|
+
<script
|
52
|
+
crossorigin="anonymous"
|
53
|
+
src="<%= bodyAfterScripts[index]%>"
|
54
|
+
></script>
|
55
|
+
<% } %> <% } %>
|
63
56
|
</body>
|
64
57
|
</html>
|
@@ -17,48 +17,41 @@
|
|
17
17
|
/>
|
18
18
|
<title><%= title %></title>
|
19
19
|
|
20
|
-
<% if (headBeforeHtmlTags) { %>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<% if (inlineScripts) { %>
|
27
|
-
<script>
|
28
|
-
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
29
|
-
<%= inlineScripts[index] %>
|
30
|
-
<% } %>
|
31
|
-
</script>
|
32
|
-
<% } %>
|
33
|
-
|
34
|
-
<% if (viewport) { %>
|
35
|
-
<script><%= viewport %></script>
|
36
|
-
<% } %>
|
37
|
-
|
38
|
-
<% if (favicon) { %>
|
39
|
-
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
40
|
-
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
41
|
-
<% } %>
|
42
|
-
|
43
|
-
<% if (headBeforeStyles) { %>
|
44
|
-
<% for (let index = 0; index < headBeforeStyles.length; index++) { %>
|
45
|
-
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
46
|
-
<% } %>
|
47
|
-
<% } %>
|
48
|
-
|
49
|
-
<% if (headBeforeScripts) { %>
|
50
|
-
<% for (let index = 0; index < headBeforeScripts.length; index++) { %>
|
51
|
-
<script crossorigin="anonymous" src="<%= headBeforeScripts[index]%>"></script>
|
20
|
+
<% if (headBeforeHtmlTags) { %> <% for (let index = 0; index <
|
21
|
+
headBeforeHtmlTags.length; index++) { %> <%= headBeforeHtmlTags[index] %> <%
|
22
|
+
} %> <% } %> <% if (inlineScripts) { %>
|
23
|
+
<script>
|
24
|
+
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
25
|
+
<%= inlineScripts[index] %>
|
52
26
|
<% } %>
|
53
|
-
|
27
|
+
</script>
|
28
|
+
<% } %> <% if (viewport) { %>
|
29
|
+
<script>
|
30
|
+
<%= viewport %>
|
31
|
+
</script>
|
32
|
+
<% } %> <% if (favicon) { %>
|
33
|
+
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
34
|
+
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
35
|
+
<% } %> <% if (headBeforeStyles) { %> <% for (let index = 0; index <
|
36
|
+
headBeforeStyles.length; index++) { %>
|
37
|
+
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
38
|
+
<% } %> <% } %> <% if (headBeforeScripts) { %> <% for (let index = 0; index
|
39
|
+
< headBeforeScripts.length; index++) { %>
|
40
|
+
<script
|
41
|
+
crossorigin="anonymous"
|
42
|
+
src="<%= headBeforeScripts[index]%>"
|
43
|
+
></script>
|
44
|
+
<% } %> <% } %>
|
54
45
|
</head>
|
55
46
|
|
56
47
|
<body>
|
57
48
|
<div id="app"></div>
|
58
|
-
<% if (bodyAfterScripts) { %>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
49
|
+
<% if (bodyAfterScripts) { %> <% for (let index = 0; index <
|
50
|
+
bodyAfterScripts.length; index++) { %>
|
51
|
+
<script
|
52
|
+
crossorigin="anonymous"
|
53
|
+
src="<%= bodyAfterScripts[index]%>"
|
54
|
+
></script>
|
55
|
+
<% } %> <% } %>
|
63
56
|
</body>
|
64
57
|
</html>
|
@@ -17,48 +17,41 @@
|
|
17
17
|
/>
|
18
18
|
<title><%= title %></title>
|
19
19
|
|
20
|
-
<% if (headBeforeHtmlTags) { %>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
<% if (inlineScripts) { %>
|
27
|
-
<script>
|
28
|
-
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
29
|
-
<%= inlineScripts[index] %>
|
30
|
-
<% } %>
|
31
|
-
</script>
|
32
|
-
<% } %>
|
33
|
-
|
34
|
-
<% if (viewport) { %>
|
35
|
-
<script><%= viewport %></script>
|
36
|
-
<% } %>
|
37
|
-
|
38
|
-
<% if (favicon) { %>
|
39
|
-
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
40
|
-
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
41
|
-
<% } %>
|
42
|
-
|
43
|
-
<% if (headBeforeStyles) { %>
|
44
|
-
<% for (let index = 0; index < headBeforeStyles.length; index++) { %>
|
45
|
-
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
46
|
-
<% } %>
|
47
|
-
<% } %>
|
48
|
-
|
49
|
-
<% if (headBeforeScripts) { %>
|
50
|
-
<% for (let index = 0; index < headBeforeScripts.length; index++) { %>
|
51
|
-
<script crossorigin="anonymous" src="<%= headBeforeScripts[index]%>"></script>
|
20
|
+
<% if (headBeforeHtmlTags) { %> <% for (let index = 0; index <
|
21
|
+
headBeforeHtmlTags.length; index++) { %> <%= headBeforeHtmlTags[index] %> <%
|
22
|
+
} %> <% } %> <% if (inlineScripts) { %>
|
23
|
+
<script>
|
24
|
+
<% for (let index = 0; index < inlineScripts.length; index++) { %>
|
25
|
+
<%= inlineScripts[index] %>
|
52
26
|
<% } %>
|
53
|
-
|
27
|
+
</script>
|
28
|
+
<% } %> <% if (viewport) { %>
|
29
|
+
<script>
|
30
|
+
<%= viewport %>
|
31
|
+
</script>
|
32
|
+
<% } %> <% if (favicon) { %>
|
33
|
+
<link rel="shortcut icon" href="<%= favicon %>" type="image/x-icon" />
|
34
|
+
<link rel="icon" href="<%= favicon %>" type="image/x-icon" />
|
35
|
+
<% } %> <% if (headBeforeStyles) { %> <% for (let index = 0; index <
|
36
|
+
headBeforeStyles.length; index++) { %>
|
37
|
+
<link href="<%= headBeforeStyles[index] %>" rel="stylesheet" />
|
38
|
+
<% } %> <% } %> <% if (headBeforeScripts) { %> <% for (let index = 0; index
|
39
|
+
< headBeforeScripts.length; index++) { %>
|
40
|
+
<script
|
41
|
+
crossorigin="anonymous"
|
42
|
+
src="<%= headBeforeScripts[index]%>"
|
43
|
+
></script>
|
44
|
+
<% } %> <% } %>
|
54
45
|
</head>
|
55
46
|
|
56
47
|
<body>
|
57
48
|
<div id="app"></div>
|
58
|
-
<% if (bodyAfterScripts) { %>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
49
|
+
<% if (bodyAfterScripts) { %> <% for (let index = 0; index <
|
50
|
+
bodyAfterScripts.length; index++) { %>
|
51
|
+
<script
|
52
|
+
crossorigin="anonymous"
|
53
|
+
src="<%= bodyAfterScripts[index]%>"
|
54
|
+
></script>
|
55
|
+
<% } %> <% } %>
|
63
56
|
</body>
|
64
57
|
</html>
|