@modern-js/app-tools 1.22.1 → 2.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1383 -87
- package/bin/modern.js +13 -1
- package/dist/js/modern/analyze/Builder.js +39 -0
- package/dist/js/modern/analyze/constants.js +48 -15
- package/dist/js/modern/analyze/generateCode.js +286 -133
- package/dist/js/modern/analyze/getBundleEntry.js +39 -41
- package/dist/js/modern/analyze/getClientRoutes/getRoutes.js +220 -0
- package/dist/js/modern/analyze/getClientRoutes/getRoutesLegacy.js +216 -0
- package/dist/js/modern/analyze/getClientRoutes/index.js +6 -0
- package/dist/js/modern/analyze/getClientRoutes/utils.js +31 -0
- package/dist/js/modern/analyze/getFileSystemEntry.js +74 -39
- package/dist/js/modern/analyze/getHtmlTemplate.js +90 -57
- package/dist/js/modern/analyze/getServerRoutes.js +123 -140
- package/dist/js/modern/analyze/index.js +220 -133
- package/dist/js/modern/analyze/isDefaultExportFunction.js +30 -20
- package/dist/js/modern/analyze/makeLegalIdentifier.js +10 -13
- package/dist/js/modern/analyze/nestedRoutes.js +166 -0
- package/dist/js/modern/analyze/templates.js +289 -29
- package/dist/js/modern/analyze/utils.js +128 -58
- package/dist/js/modern/builder/builderPlugins/compatModern.js +233 -0
- package/dist/js/modern/builder/index.js +154 -0
- package/dist/js/modern/builder/loaders/routerLoader.js +17 -0
- package/dist/js/modern/builder/loaders/serverModuleLoader.js +7 -0
- package/dist/js/modern/builder/share.js +46 -0
- package/dist/js/modern/builder/webpackPlugins/htmlAsyncChunkPlugin.js +30 -0
- package/dist/js/modern/builder/webpackPlugins/htmlBottomTemplate.js +37 -0
- package/dist/js/modern/builder/webpackPlugins/routerPlugin.js +113 -0
- package/dist/js/modern/commands/build.js +75 -138
- package/dist/js/modern/commands/deploy.js +27 -4
- package/dist/js/modern/commands/dev.js +102 -66
- package/dist/js/modern/commands/index.js +1 -1
- package/dist/js/modern/commands/inspect.js +33 -64
- package/dist/js/modern/commands/serve.js +54 -0
- package/dist/js/modern/config/default.js +173 -0
- package/dist/js/modern/config/index.js +8 -0
- package/dist/js/modern/config/initial/createHtmlConfig.js +35 -0
- package/dist/js/modern/config/initial/createOutputConfig.js +68 -0
- package/dist/js/modern/config/initial/createSourceConfig.js +39 -0
- package/dist/js/modern/config/initial/createToolsConfig.js +42 -0
- package/dist/js/modern/config/initial/index.js +16 -0
- package/dist/js/modern/config/initial/inits.js +153 -0
- package/dist/js/modern/config/initial/transformNormalizedConfig.js +47 -0
- package/dist/js/modern/defineConfig.js +27 -0
- package/dist/js/modern/exports/server.js +4 -1
- package/dist/js/modern/hooks.js +37 -21
- package/dist/js/modern/index.js +185 -94
- package/dist/js/modern/initialize/index.js +120 -0
- package/dist/js/modern/locale/en.js +20 -22
- package/dist/js/modern/locale/index.js +6 -6
- package/dist/js/modern/locale/zh.js +21 -23
- package/dist/js/modern/schema/Schema.js +40 -0
- package/dist/js/modern/schema/index.js +88 -0
- package/dist/js/modern/schema/legacy.js +148 -0
- package/dist/js/modern/types/config/deploy.js +0 -0
- package/dist/js/modern/types/config/dev.js +0 -0
- package/dist/js/modern/types/config/experiments.js +0 -0
- package/dist/js/modern/types/config/html.js +0 -0
- package/dist/js/modern/types/config/index.js +1 -0
- package/dist/js/modern/types/config/output.js +0 -0
- package/dist/js/modern/types/config/performance.js +0 -0
- package/dist/js/modern/types/config/security.js +0 -0
- package/dist/js/modern/types/config/source.js +0 -0
- package/dist/js/modern/types/config/tools.js +0 -0
- package/dist/js/modern/types/hooks.js +0 -0
- package/dist/js/modern/types/index.js +3 -0
- package/dist/js/modern/types/legacyConfig/deploy.js +0 -0
- package/dist/js/modern/types/legacyConfig/dev.js +0 -0
- package/dist/js/modern/types/legacyConfig/index.js +0 -0
- package/dist/js/modern/types/legacyConfig/output.js +0 -0
- package/dist/js/modern/types/legacyConfig/source.js +0 -0
- package/dist/js/modern/types/legacyConfig/tools.js +0 -0
- package/dist/js/modern/utils/commands.js +13 -0
- package/dist/js/modern/utils/config.js +102 -52
- package/dist/js/modern/utils/createFileWatcher.js +115 -0
- package/dist/js/modern/utils/createServer.js +67 -10
- package/dist/js/modern/utils/getServerInternalPlugins.js +58 -0
- package/dist/js/modern/utils/getSpecifiedEntries.js +46 -25
- package/dist/js/modern/utils/language.js +6 -3
- package/dist/js/modern/utils/printInstructions.js +29 -9
- package/dist/js/modern/utils/restart.js +44 -0
- package/dist/js/modern/utils/routes.js +29 -14
- package/dist/js/node/analyze/Builder.js +64 -0
- package/dist/js/node/analyze/constants.js +86 -33
- package/dist/js/node/analyze/generateCode.js +305 -163
- package/dist/js/node/analyze/getBundleEntry.js +66 -58
- package/dist/js/node/analyze/getClientRoutes/getRoutes.js +242 -0
- package/dist/js/node/analyze/getClientRoutes/getRoutesLegacy.js +238 -0
- package/dist/js/node/analyze/getClientRoutes/index.js +30 -0
- package/dist/js/node/analyze/getClientRoutes/utils.js +58 -0
- package/dist/js/node/analyze/getFileSystemEntry.js +99 -58
- package/dist/js/node/analyze/getHtmlTemplate.js +121 -83
- package/dist/js/node/analyze/getServerRoutes.js +146 -160
- package/dist/js/node/analyze/index.js +243 -161
- package/dist/js/node/analyze/isDefaultExportFunction.js +59 -38
- package/dist/js/node/analyze/makeLegalIdentifier.js +31 -19
- package/dist/js/node/analyze/nestedRoutes.js +193 -0
- package/dist/js/node/analyze/templates.js +316 -43
- package/dist/js/node/analyze/utils.js +158 -78
- package/dist/js/node/builder/builderPlugins/compatModern.js +258 -0
- package/dist/js/node/builder/index.js +177 -0
- package/dist/js/node/builder/loaders/routerLoader.js +38 -0
- package/dist/js/node/builder/loaders/serverModuleLoader.js +28 -0
- package/dist/js/node/builder/share.js +75 -0
- package/dist/js/node/builder/webpackPlugins/htmlAsyncChunkPlugin.js +53 -0
- package/dist/js/node/builder/webpackPlugins/htmlBottomTemplate.js +60 -0
- package/dist/js/node/builder/webpackPlugins/routerPlugin.js +135 -0
- package/dist/js/node/commands/build.js +97 -159
- package/dist/js/node/commands/deploy.js +49 -12
- package/dist/js/node/commands/dev.js +121 -93
- package/dist/js/node/commands/index.js +19 -44
- package/dist/js/node/commands/inspect.js +56 -93
- package/dist/js/node/commands/serve.js +83 -0
- package/dist/js/node/config/default.js +195 -0
- package/dist/js/node/config/index.js +34 -0
- package/dist/js/node/config/initial/createHtmlConfig.js +58 -0
- package/dist/js/node/config/initial/createOutputConfig.js +91 -0
- package/dist/js/node/config/initial/createSourceConfig.js +62 -0
- package/dist/js/node/config/initial/createToolsConfig.js +65 -0
- package/dist/js/node/config/initial/index.js +41 -0
- package/dist/js/node/config/initial/inits.js +176 -0
- package/dist/js/node/config/initial/transformNormalizedConfig.js +70 -0
- package/dist/js/node/defineConfig.js +49 -0
- package/dist/js/node/exports/server.js +25 -11
- package/dist/js/node/hooks.js +53 -36
- package/dist/js/node/index.js +216 -128
- package/dist/js/node/initialize/index.js +135 -0
- package/dist/js/node/locale/en.js +40 -26
- package/dist/js/node/locale/index.js +31 -18
- package/dist/js/node/locale/zh.js +41 -27
- package/dist/js/node/schema/Schema.js +63 -0
- package/dist/js/node/schema/index.js +118 -0
- package/dist/js/node/schema/legacy.js +169 -0
- package/dist/js/node/types/config/deploy.js +15 -0
- package/dist/js/node/types/config/dev.js +15 -0
- package/dist/js/node/types/config/experiments.js +15 -0
- package/dist/js/node/types/config/html.js +15 -0
- package/dist/js/node/types/config/index.js +17 -0
- package/dist/js/node/types/config/output.js +15 -0
- package/dist/js/node/types/config/performance.js +15 -0
- package/dist/js/node/types/config/security.js +15 -0
- package/dist/js/node/types/config/source.js +15 -0
- package/dist/js/node/types/config/tools.js +15 -0
- package/dist/js/node/types/hooks.js +15 -0
- package/dist/js/node/types/index.js +19 -0
- package/dist/js/node/types/legacyConfig/deploy.js +15 -0
- package/dist/js/node/types/legacyConfig/dev.js +15 -0
- package/dist/js/node/types/legacyConfig/index.js +15 -0
- package/dist/js/node/types/legacyConfig/output.js +15 -0
- package/dist/js/node/types/legacyConfig/source.js +15 -0
- package/dist/js/node/types/legacyConfig/tools.js +15 -0
- package/dist/js/node/utils/commands.js +37 -0
- package/dist/js/node/utils/config.js +125 -75
- package/dist/js/node/utils/createFileWatcher.js +139 -0
- package/dist/js/node/utils/createServer.js +96 -25
- package/dist/js/node/utils/getServerInternalPlugins.js +79 -0
- package/dist/js/node/utils/getSpecifiedEntries.js +68 -34
- package/dist/js/node/utils/language.js +28 -10
- package/dist/js/node/utils/printInstructions.js +51 -19
- package/dist/js/node/utils/restart.js +67 -0
- package/dist/js/node/utils/routes.js +58 -24
- package/dist/js/node/utils/types.js +15 -0
- package/dist/js/treeshaking/analyze/Builder.js +199 -0
- package/dist/js/treeshaking/analyze/constants.js +37 -0
- package/dist/js/treeshaking/analyze/generateCode.js +615 -0
- package/dist/js/treeshaking/analyze/getBundleEntry.js +64 -0
- package/dist/js/treeshaking/analyze/getClientRoutes/getRoutes.js +233 -0
- package/dist/js/treeshaking/analyze/getClientRoutes/getRoutesLegacy.js +231 -0
- package/dist/js/treeshaking/analyze/getClientRoutes/index.js +3 -0
- package/dist/js/treeshaking/analyze/getClientRoutes/utils.js +23 -0
- package/dist/js/treeshaking/analyze/getFileSystemEntry.js +107 -0
- package/dist/js/treeshaking/analyze/getHtmlTemplate.js +302 -0
- package/dist/js/treeshaking/analyze/getServerRoutes.js +222 -0
- package/dist/js/treeshaking/analyze/index.js +589 -0
- package/dist/js/treeshaking/analyze/isDefaultExportFunction.js +47 -0
- package/dist/js/treeshaking/analyze/makeLegalIdentifier.js +13 -0
- package/dist/js/treeshaking/analyze/nestedRoutes.js +426 -0
- package/dist/js/treeshaking/analyze/templates.js +446 -0
- package/dist/js/treeshaking/analyze/utils.js +390 -0
- package/dist/js/treeshaking/builder/builderPlugins/compatModern.js +304 -0
- package/dist/js/treeshaking/builder/index.js +374 -0
- package/dist/js/treeshaking/builder/loaders/routerLoader.js +13 -0
- package/dist/js/treeshaking/builder/loaders/serverModuleLoader.js +5 -0
- package/dist/js/treeshaking/builder/share.js +40 -0
- package/dist/js/treeshaking/builder/webpackPlugins/htmlAsyncChunkPlugin.js +110 -0
- package/dist/js/treeshaking/builder/webpackPlugins/htmlBottomTemplate.js +72 -0
- package/dist/js/treeshaking/builder/webpackPlugins/routerPlugin.js +343 -0
- package/dist/js/treeshaking/commands/build.js +291 -0
- package/dist/js/treeshaking/commands/deploy.js +154 -0
- package/dist/js/treeshaking/commands/dev.js +319 -0
- package/dist/js/treeshaking/commands/index.js +3 -0
- package/dist/js/treeshaking/commands/inspect.js +149 -0
- package/dist/js/treeshaking/commands/serve.js +199 -0
- package/dist/js/treeshaking/config/default.js +208 -0
- package/dist/js/treeshaking/config/index.js +3 -0
- package/dist/js/treeshaking/config/initial/createHtmlConfig.js +19 -0
- package/dist/js/treeshaking/config/initial/createOutputConfig.js +41 -0
- package/dist/js/treeshaking/config/initial/createSourceConfig.js +42 -0
- package/dist/js/treeshaking/config/initial/createToolsConfig.js +23 -0
- package/dist/js/treeshaking/config/initial/index.js +12 -0
- package/dist/js/treeshaking/config/initial/inits.js +213 -0
- package/dist/js/treeshaking/config/initial/transformNormalizedConfig.js +35 -0
- package/dist/js/treeshaking/defineConfig.js +61 -0
- package/dist/js/treeshaking/exports/server.js +2 -0
- package/dist/js/treeshaking/hooks.js +31 -0
- package/dist/js/treeshaking/index.js +694 -0
- package/dist/js/treeshaking/initialize/index.js +300 -0
- package/dist/js/treeshaking/locale/en.js +35 -0
- package/dist/js/treeshaking/locale/index.js +9 -0
- package/dist/js/treeshaking/locale/zh.js +35 -0
- package/dist/js/treeshaking/schema/Schema.js +273 -0
- package/dist/js/treeshaking/schema/index.js +181 -0
- package/dist/js/treeshaking/schema/legacy.js +337 -0
- package/dist/js/treeshaking/types/config/deploy.js +1 -0
- package/dist/js/treeshaking/types/config/dev.js +1 -0
- package/dist/js/treeshaking/types/config/experiments.js +1 -0
- package/dist/js/treeshaking/types/config/html.js +1 -0
- package/dist/js/treeshaking/types/config/index.js +1 -0
- package/dist/js/treeshaking/types/config/output.js +1 -0
- package/dist/js/treeshaking/types/config/performance.js +1 -0
- package/dist/js/treeshaking/types/config/security.js +1 -0
- package/dist/js/treeshaking/types/config/source.js +1 -0
- package/dist/js/treeshaking/types/config/tools.js +1 -0
- package/dist/js/treeshaking/types/hooks.js +1 -0
- package/dist/js/treeshaking/types/index.js +3 -0
- package/dist/js/treeshaking/types/legacyConfig/deploy.js +1 -0
- package/dist/js/treeshaking/types/legacyConfig/dev.js +1 -0
- package/dist/js/treeshaking/types/legacyConfig/index.js +1 -0
- package/dist/js/treeshaking/types/legacyConfig/output.js +1 -0
- package/dist/js/treeshaking/types/legacyConfig/source.js +1 -0
- package/dist/js/treeshaking/types/legacyConfig/tools.js +1 -0
- package/dist/js/treeshaking/utils/commands.js +10 -0
- package/dist/js/treeshaking/utils/config.js +302 -0
- package/dist/js/treeshaking/utils/createFileWatcher.js +283 -0
- package/dist/js/treeshaking/utils/createServer.js +258 -0
- package/dist/js/treeshaking/utils/getServerInternalPlugins.js +210 -0
- package/dist/js/treeshaking/utils/getSpecifiedEntries.js +185 -0
- package/dist/js/treeshaking/utils/language.js +6 -0
- package/dist/js/treeshaking/utils/printInstructions.js +152 -0
- package/dist/js/treeshaking/utils/restart.js +187 -0
- package/dist/js/treeshaking/utils/routes.js +153 -0
- package/dist/js/treeshaking/utils/types.js +1 -0
- package/dist/types/analyze/Builder.d.ts +8 -0
- package/dist/types/analyze/constants.d.ts +13 -1
- package/dist/types/analyze/generateCode.d.ts +3 -2
- package/dist/types/analyze/getBundleEntry.d.ts +2 -2
- package/dist/types/analyze/{getClientRoutes.d.ts → getClientRoutes/getRoutes.d.ts} +2 -7
- package/dist/types/analyze/getClientRoutes/getRoutesLegacy.d.ts +15 -0
- package/dist/types/analyze/getClientRoutes/index.d.ts +2 -0
- package/dist/types/analyze/getClientRoutes/utils.d.ts +5 -0
- package/dist/types/analyze/getFileSystemEntry.d.ts +2 -2
- package/dist/types/analyze/getHtmlTemplate.d.ts +3 -3
- package/dist/types/analyze/getServerRoutes.d.ts +3 -2
- package/dist/types/analyze/index.d.ts +3 -40
- package/dist/types/analyze/nestedRoutes.d.ts +5 -0
- package/dist/types/analyze/templates.d.ts +24 -5
- package/dist/types/analyze/utils.d.ts +12 -2
- package/dist/types/builder/builderPlugins/compatModern.d.ts +14 -0
- package/dist/types/builder/index.d.ts +18 -0
- package/dist/types/builder/loaders/routerLoader.d.ts +3 -0
- package/dist/types/builder/loaders/serverModuleLoader.d.ts +3 -0
- package/dist/types/builder/share.d.ts +26 -0
- package/dist/types/builder/webpackPlugins/htmlAsyncChunkPlugin.d.ts +8 -0
- package/dist/types/builder/webpackPlugins/htmlBottomTemplate.d.ts +10 -0
- package/dist/types/builder/webpackPlugins/routerPlugin.d.ts +4 -0
- package/dist/types/commands/build.d.ts +2 -1
- package/dist/types/commands/deploy.d.ts +2 -1
- package/dist/types/commands/dev.d.ts +2 -1
- package/dist/types/commands/index.d.ts +1 -1
- package/dist/types/commands/inspect.d.ts +10 -6
- package/dist/types/commands/serve.d.ts +3 -0
- package/dist/types/config/default.d.ts +3 -0
- package/dist/types/config/index.d.ts +2 -0
- package/dist/types/config/initial/createHtmlConfig.d.ts +2 -0
- package/dist/types/config/initial/createOutputConfig.d.ts +2 -0
- package/dist/types/config/initial/createSourceConfig.d.ts +2 -0
- package/dist/types/config/initial/createToolsConfig.d.ts +2 -0
- package/dist/types/config/initial/index.d.ts +4 -0
- package/dist/types/config/initial/inits.d.ts +4 -0
- package/dist/types/config/initial/transformNormalizedConfig.d.ts +2 -0
- package/dist/types/defineConfig.d.ts +8 -0
- package/dist/types/hooks.d.ts +2 -37
- package/dist/types/index.d.ts +9 -3
- package/dist/types/initialize/index.d.ts +5 -0
- package/dist/types/locale/en.d.ts +1 -2
- package/dist/types/locale/index.d.ts +2 -4
- package/dist/types/locale/zh.d.ts +1 -2
- package/dist/types/schema/Schema.d.ts +14 -0
- package/dist/types/schema/index.d.ts +4 -0
- package/dist/types/schema/legacy.d.ts +3 -0
- package/dist/types/types/config/deploy.d.ts +9 -0
- package/dist/types/types/config/dev.d.ts +13 -0
- package/dist/types/types/config/experiments.d.ts +4 -0
- package/dist/types/types/config/html.d.ts +4 -0
- package/dist/types/types/config/index.d.ts +66 -0
- package/dist/types/types/config/output.d.ts +22 -0
- package/dist/types/types/config/performance.d.ts +4 -0
- package/dist/types/types/config/security.d.ts +4 -0
- package/dist/types/types/config/source.d.ts +24 -0
- package/dist/types/types/config/tools.d.ts +24 -0
- package/dist/types/types/hooks.d.ts +89 -0
- package/dist/types/types/index.d.ts +23 -0
- package/dist/types/types/legacyConfig/deploy.d.ts +8 -0
- package/dist/types/types/legacyConfig/dev.d.ts +13 -0
- package/dist/types/types/legacyConfig/index.d.ts +33 -0
- package/dist/types/types/legacyConfig/output.d.ts +51 -0
- package/dist/types/types/legacyConfig/source.d.ts +25 -0
- package/dist/types/types/legacyConfig/tools.d.ts +17 -0
- package/dist/types/utils/commands.d.ts +2 -0
- package/dist/types/utils/config.d.ts +2 -2
- package/dist/types/utils/createFileWatcher.d.ts +4 -0
- package/dist/types/utils/createServer.d.ts +9 -1
- package/dist/types/utils/getServerInternalPlugins.d.ts +2 -0
- package/dist/types/utils/printInstructions.d.ts +3 -2
- package/dist/types/utils/restart.d.ts +3 -0
- package/dist/types/utils/types.d.ts +2 -3
- package/lib/types.d.ts +1 -1
- package/package.json +37 -46
- package/dist/js/modern/analyze/getClientRoutes.js +0 -219
- package/dist/js/modern/commands/start.js +0 -31
- package/dist/js/modern/utils/createCompiler.js +0 -61
- package/dist/js/node/analyze/getClientRoutes.js +0 -241
- package/dist/js/node/commands/start.js +0 -47
- package/dist/js/node/utils/createCompiler.js +0 -81
- package/dist/types/commands/start.d.ts +0 -2
- package/dist/types/utils/createCompiler.d.ts +0 -13
|
@@ -1,98 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var _path = _interopRequireDefault(require("path"));
|
|
9
|
-
|
|
10
|
-
var _webpack = require("@modern-js/webpack");
|
|
11
|
-
|
|
12
|
-
var _utils = require("@modern-js/utils");
|
|
13
|
-
|
|
14
|
-
var _webpackChain = _interopRequireDefault(require("@modern-js/utils/webpack-chain"));
|
|
15
|
-
|
|
16
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
-
|
|
18
|
-
const formatWebpackConfig = (config, verbose) => {
|
|
19
|
-
const stringify = _webpackChain.default.toString;
|
|
20
|
-
return `module.exports = ${stringify(config, {
|
|
21
|
-
verbose
|
|
22
|
-
})};`;
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
23
8
|
};
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
const resolvedConfig = api.useResolvedConfigContext();
|
|
30
|
-
const appContext = api.useAppContext();
|
|
31
|
-
const outputFiles = [];
|
|
32
|
-
outputFiles.push(printInspectResult(_webpack.WebpackConfigTarget.CLIENT, appContext, resolvedConfig, options));
|
|
33
|
-
|
|
34
|
-
if (resolvedConfig.output.enableModernMode) {
|
|
35
|
-
outputFiles.push(printInspectResult(_webpack.WebpackConfigTarget.MODERN, appContext, resolvedConfig, options));
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
if ((0, _utils.isUseSSRBundle)(resolvedConfig)) {
|
|
39
|
-
outputFiles.push(printInspectResult(_webpack.WebpackConfigTarget.NODE, appContext, resolvedConfig, options));
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
40
14
|
}
|
|
41
|
-
|
|
42
|
-
_utils.logger.success('Inspect succeed, you can open following files to view the full webpack config: \n');
|
|
43
|
-
|
|
44
|
-
outputFiles.forEach(file => {
|
|
45
|
-
_utils.logger.log(` - ${_utils.chalk.yellow(_path.default.relative(appContext.appDirectory, file))}`);
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
_utils.logger.log();
|
|
15
|
+
return to;
|
|
49
16
|
};
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var __async = (__this, __arguments, generator) => {
|
|
19
|
+
return new Promise((resolve, reject) => {
|
|
20
|
+
var fulfilled = (value) => {
|
|
21
|
+
try {
|
|
22
|
+
step(generator.next(value));
|
|
23
|
+
} catch (e) {
|
|
24
|
+
reject(e);
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
var rejected = (value) => {
|
|
28
|
+
try {
|
|
29
|
+
step(generator.throw(value));
|
|
30
|
+
} catch (e) {
|
|
31
|
+
reject(e);
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
35
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
36
|
+
});
|
|
67
37
|
};
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
const outputFile = `webpack.${tag}.inspect.js`;
|
|
81
|
-
|
|
82
|
-
const outputFilePath = _path.default.posix.join(outputPath, outputFile);
|
|
83
|
-
|
|
84
|
-
const rawWebpackConfig = formatWebpackConfig(webpackConfig, verbose);
|
|
85
|
-
|
|
86
|
-
_utils.fs.outputFileSync(outputFilePath, rawWebpackConfig);
|
|
87
|
-
|
|
88
|
-
if (console) {
|
|
89
|
-
_utils.logger.log(`
|
|
90
|
-
webpack config for ${tag} build:
|
|
91
|
-
${rawWebpackConfig}
|
|
92
|
-
`);
|
|
38
|
+
var inspect_exports = {};
|
|
39
|
+
__export(inspect_exports, {
|
|
40
|
+
inspect: () => inspect
|
|
41
|
+
});
|
|
42
|
+
module.exports = __toCommonJS(inspect_exports);
|
|
43
|
+
var import_path = require("path");
|
|
44
|
+
const inspect = (api, options) => __async(void 0, null, function* () {
|
|
45
|
+
const appContext = api.useAppContext();
|
|
46
|
+
if (!appContext.builder) {
|
|
47
|
+
throw new Error(
|
|
48
|
+
"Expect the Builder to have been initialized, But the appContext.builder received `undefined`"
|
|
49
|
+
);
|
|
93
50
|
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
51
|
+
return appContext.builder.inspectConfig({
|
|
52
|
+
env: options.env,
|
|
53
|
+
verbose: options.verbose,
|
|
54
|
+
outputPath: (0, import_path.join)(appContext == null ? void 0 : appContext.builder.context.distPath, options.output),
|
|
55
|
+
writeToDisk: true
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
59
|
+
0 && (module.exports = {
|
|
60
|
+
inspect
|
|
61
|
+
});
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
21
|
+
mod
|
|
22
|
+
));
|
|
23
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
24
|
+
var __async = (__this, __arguments, generator) => {
|
|
25
|
+
return new Promise((resolve, reject) => {
|
|
26
|
+
var fulfilled = (value) => {
|
|
27
|
+
try {
|
|
28
|
+
step(generator.next(value));
|
|
29
|
+
} catch (e) {
|
|
30
|
+
reject(e);
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
var rejected = (value) => {
|
|
34
|
+
try {
|
|
35
|
+
step(generator.throw(value));
|
|
36
|
+
} catch (e) {
|
|
37
|
+
reject(e);
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
41
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
var serve_exports = {};
|
|
45
|
+
__export(serve_exports, {
|
|
46
|
+
start: () => start
|
|
47
|
+
});
|
|
48
|
+
module.exports = __toCommonJS(serve_exports);
|
|
49
|
+
var import_utils = require("@modern-js/utils");
|
|
50
|
+
var import_prod_server = __toESM(require("@modern-js/prod-server"));
|
|
51
|
+
var import_printInstructions = require("../utils/printInstructions");
|
|
52
|
+
var import_createServer = require("../utils/createServer");
|
|
53
|
+
var import_getServerInternalPlugins = require("../utils/getServerInternalPlugins");
|
|
54
|
+
const start = (api) => __async(void 0, null, function* () {
|
|
55
|
+
var _a;
|
|
56
|
+
const appContext = api.useAppContext();
|
|
57
|
+
const userConfig = api.useResolvedConfigContext();
|
|
58
|
+
const hookRunners = api.useHookRunners();
|
|
59
|
+
const { appDirectory, port, serverConfigFile } = appContext;
|
|
60
|
+
import_utils.logger.log(import_utils.chalk.cyan(`Starting the modern server...`));
|
|
61
|
+
const apiOnly = yield (0, import_utils.isApiOnly)(
|
|
62
|
+
appContext.appDirectory,
|
|
63
|
+
(_a = userConfig == null ? void 0 : userConfig.source) == null ? void 0 : _a.entriesDir
|
|
64
|
+
);
|
|
65
|
+
const serverInternalPlugins = yield (0, import_getServerInternalPlugins.getServerInternalPlugins)(api);
|
|
66
|
+
const app = yield (0, import_prod_server.default)({
|
|
67
|
+
pwd: appDirectory,
|
|
68
|
+
config: userConfig,
|
|
69
|
+
serverConfigFile,
|
|
70
|
+
internalPlugins: (0, import_createServer.injectDataLoaderPlugin)(serverInternalPlugins),
|
|
71
|
+
apiOnly
|
|
72
|
+
});
|
|
73
|
+
app.listen(port, (err) => __async(void 0, null, function* () {
|
|
74
|
+
if (err) {
|
|
75
|
+
throw err;
|
|
76
|
+
}
|
|
77
|
+
yield (0, import_printInstructions.printInstructions)(hookRunners, appContext, userConfig);
|
|
78
|
+
}));
|
|
79
|
+
});
|
|
80
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
81
|
+
0 && (module.exports = {
|
|
82
|
+
start
|
|
83
|
+
});
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
9
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
|
+
var __spreadValues = (a, b) => {
|
|
11
|
+
for (var prop in b || (b = {}))
|
|
12
|
+
if (__hasOwnProp.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
if (__getOwnPropSymbols)
|
|
15
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
16
|
+
if (__propIsEnum.call(b, prop))
|
|
17
|
+
__defNormalProp(a, prop, b[prop]);
|
|
18
|
+
}
|
|
19
|
+
return a;
|
|
20
|
+
};
|
|
21
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
22
|
+
var __export = (target, all) => {
|
|
23
|
+
for (var name in all)
|
|
24
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
25
|
+
};
|
|
26
|
+
var __copyProps = (to, from, except, desc) => {
|
|
27
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
28
|
+
for (let key of __getOwnPropNames(from))
|
|
29
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
30
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
31
|
+
}
|
|
32
|
+
return to;
|
|
33
|
+
};
|
|
34
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
|
+
var default_exports = {};
|
|
36
|
+
__export(default_exports, {
|
|
37
|
+
createDefaultConfig: () => createDefaultConfig,
|
|
38
|
+
createLegacyDefaultConfig: () => createLegacyDefaultConfig
|
|
39
|
+
});
|
|
40
|
+
module.exports = __toCommonJS(default_exports);
|
|
41
|
+
var import_builder_webpack_provider = require("@modern-js/builder-webpack-provider");
|
|
42
|
+
function createDefaultConfig(appContext) {
|
|
43
|
+
const defaultBuilderConfig = (0, import_builder_webpack_provider.createDefaultConfig)();
|
|
44
|
+
const dev = __spreadValues({}, defaultBuilderConfig.dev);
|
|
45
|
+
const tools = __spreadValues({}, defaultBuilderConfig.tools);
|
|
46
|
+
const output = __spreadProps(__spreadValues({}, defaultBuilderConfig.output), {
|
|
47
|
+
disableNodePolyfill: true
|
|
48
|
+
});
|
|
49
|
+
const source = __spreadProps(__spreadValues({}, defaultBuilderConfig.source), {
|
|
50
|
+
entries: void 0,
|
|
51
|
+
enableAsyncEntry: false,
|
|
52
|
+
disableDefaultEntries: false,
|
|
53
|
+
entriesDir: "./src",
|
|
54
|
+
configDir: "./config",
|
|
55
|
+
alias: {
|
|
56
|
+
[appContext.internalDirAlias]: appContext.internalDirectory,
|
|
57
|
+
[appContext.internalSrcAlias]: appContext.srcDirectory,
|
|
58
|
+
"@": appContext.srcDirectory,
|
|
59
|
+
"@shared": appContext.sharedDirectory
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
const html = __spreadProps(__spreadValues({}, defaultBuilderConfig.html), {
|
|
63
|
+
title: "",
|
|
64
|
+
meta: {
|
|
65
|
+
charset: { charset: "utf-8" },
|
|
66
|
+
viewport: "width=device-width, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no",
|
|
67
|
+
"http-equiv": { "http-equiv": "x-ua-compatible", content: "ie=edge" },
|
|
68
|
+
renderer: "webkit",
|
|
69
|
+
layoutmode: "standard",
|
|
70
|
+
imagemode: "force",
|
|
71
|
+
"wap-font-scale": "no",
|
|
72
|
+
"format-detection": "telephone=no"
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
const server = {
|
|
76
|
+
routes: void 0,
|
|
77
|
+
publicRoutes: void 0,
|
|
78
|
+
ssr: void 0,
|
|
79
|
+
ssrByEntries: void 0,
|
|
80
|
+
baseUrl: "/",
|
|
81
|
+
port: 8080
|
|
82
|
+
};
|
|
83
|
+
return {
|
|
84
|
+
source,
|
|
85
|
+
output,
|
|
86
|
+
server,
|
|
87
|
+
dev,
|
|
88
|
+
html,
|
|
89
|
+
tools,
|
|
90
|
+
plugins: [],
|
|
91
|
+
builderPlugins: [],
|
|
92
|
+
runtime: {},
|
|
93
|
+
runtimeByEntries: {}
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
function createLegacyDefaultConfig(appContext) {
|
|
97
|
+
const defaultAlias = appContext ? {
|
|
98
|
+
[appContext.internalDirAlias]: appContext.internalDirectory,
|
|
99
|
+
[appContext.internalSrcAlias]: appContext.srcDirectory,
|
|
100
|
+
"@": appContext.srcDirectory,
|
|
101
|
+
"@shared": appContext.sharedDirectory
|
|
102
|
+
} : {};
|
|
103
|
+
const sourceDefaults = {
|
|
104
|
+
entries: void 0,
|
|
105
|
+
enableAsyncEntry: false,
|
|
106
|
+
disableDefaultEntries: false,
|
|
107
|
+
entriesDir: "./src",
|
|
108
|
+
configDir: "./config",
|
|
109
|
+
apiDir: "./api",
|
|
110
|
+
envVars: [],
|
|
111
|
+
globalVars: void 0,
|
|
112
|
+
alias: defaultAlias,
|
|
113
|
+
moduleScopes: void 0,
|
|
114
|
+
include: []
|
|
115
|
+
};
|
|
116
|
+
const outputDefaults = {
|
|
117
|
+
assetPrefix: "/",
|
|
118
|
+
htmlPath: "html",
|
|
119
|
+
jsPath: "static/js",
|
|
120
|
+
cssPath: "static/css",
|
|
121
|
+
mediaPath: "static/media",
|
|
122
|
+
path: "dist",
|
|
123
|
+
title: "",
|
|
124
|
+
titleByEntries: void 0,
|
|
125
|
+
meta: {
|
|
126
|
+
charset: { charset: "utf-8" },
|
|
127
|
+
viewport: "width=device-width, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no",
|
|
128
|
+
"http-equiv": { "http-equiv": "x-ua-compatible", content: "ie=edge" },
|
|
129
|
+
renderer: "webkit",
|
|
130
|
+
layoutmode: "standard",
|
|
131
|
+
imagemode: "force",
|
|
132
|
+
"wap-font-scale": "no",
|
|
133
|
+
"format-detection": "telephone=no"
|
|
134
|
+
},
|
|
135
|
+
metaByEntries: void 0,
|
|
136
|
+
inject: "head",
|
|
137
|
+
injectByEntries: void 0,
|
|
138
|
+
mountId: "root",
|
|
139
|
+
favicon: "",
|
|
140
|
+
faviconByEntries: void 0,
|
|
141
|
+
copy: void 0,
|
|
142
|
+
disableHtmlFolder: false,
|
|
143
|
+
disableCssModuleExtension: false,
|
|
144
|
+
disableCssExtract: false,
|
|
145
|
+
enableCssModuleTSDeclaration: false,
|
|
146
|
+
disableMinimize: false,
|
|
147
|
+
enableInlineStyles: false,
|
|
148
|
+
enableInlineScripts: false,
|
|
149
|
+
disableSourceMap: false,
|
|
150
|
+
disableInlineRuntimeChunk: false,
|
|
151
|
+
disableAssetsCache: false,
|
|
152
|
+
enableLatestDecorators: false,
|
|
153
|
+
polyfill: "entry",
|
|
154
|
+
dataUriLimit: 1e4,
|
|
155
|
+
templateParameters: {},
|
|
156
|
+
templateParametersByEntries: void 0,
|
|
157
|
+
cssModuleLocalIdentName: void 0,
|
|
158
|
+
disableNodePolyfill: false,
|
|
159
|
+
enableTsLoader: false
|
|
160
|
+
};
|
|
161
|
+
const serverDefaults = {
|
|
162
|
+
routes: void 0,
|
|
163
|
+
publicRoutes: void 0,
|
|
164
|
+
ssr: void 0,
|
|
165
|
+
ssrByEntries: void 0,
|
|
166
|
+
baseUrl: "/",
|
|
167
|
+
port: 8080
|
|
168
|
+
};
|
|
169
|
+
const devDefaults = { assetPrefix: false, https: false };
|
|
170
|
+
const toolsDefaults = {
|
|
171
|
+
webpack: void 0,
|
|
172
|
+
babel: void 0,
|
|
173
|
+
postcss: void 0,
|
|
174
|
+
autoprefixer: void 0,
|
|
175
|
+
lodash: void 0,
|
|
176
|
+
devServer: void 0,
|
|
177
|
+
tsLoader: void 0,
|
|
178
|
+
terser: void 0,
|
|
179
|
+
minifyCss: void 0
|
|
180
|
+
};
|
|
181
|
+
return {
|
|
182
|
+
source: sourceDefaults,
|
|
183
|
+
output: outputDefaults,
|
|
184
|
+
server: serverDefaults,
|
|
185
|
+
dev: devDefaults,
|
|
186
|
+
tools: toolsDefaults,
|
|
187
|
+
runtime: {},
|
|
188
|
+
runtimeByEntries: {}
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
192
|
+
0 && (module.exports = {
|
|
193
|
+
createDefaultConfig,
|
|
194
|
+
createLegacyDefaultConfig
|
|
195
|
+
});
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var config_exports = {};
|
|
19
|
+
__export(config_exports, {
|
|
20
|
+
checkIsLegacyConfig: () => import_initial.checkIsLegacyConfig,
|
|
21
|
+
createDefaultConfig: () => import_default.createDefaultConfig,
|
|
22
|
+
createLegacyDefaultConfig: () => import_default.createLegacyDefaultConfig,
|
|
23
|
+
initialNormalizedConfig: () => import_initial.initialNormalizedConfig
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(config_exports);
|
|
26
|
+
var import_default = require("./default");
|
|
27
|
+
var import_initial = require("./initial");
|
|
28
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
29
|
+
0 && (module.exports = {
|
|
30
|
+
checkIsLegacyConfig,
|
|
31
|
+
createDefaultConfig,
|
|
32
|
+
createLegacyDefaultConfig,
|
|
33
|
+
initialNormalizedConfig
|
|
34
|
+
});
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var createHtmlConfig_exports = {};
|
|
19
|
+
__export(createHtmlConfig_exports, {
|
|
20
|
+
createHtmlConfig: () => createHtmlConfig
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(createHtmlConfig_exports);
|
|
23
|
+
function createHtmlConfig(config) {
|
|
24
|
+
const {
|
|
25
|
+
disableHtmlFolder,
|
|
26
|
+
favicon,
|
|
27
|
+
faviconByEntries,
|
|
28
|
+
inject,
|
|
29
|
+
injectByEntries,
|
|
30
|
+
meta,
|
|
31
|
+
metaByEntries,
|
|
32
|
+
mountId,
|
|
33
|
+
title,
|
|
34
|
+
titleByEntries,
|
|
35
|
+
templateParameters,
|
|
36
|
+
templateParametersByEntries,
|
|
37
|
+
crossorigin
|
|
38
|
+
} = config.output;
|
|
39
|
+
return {
|
|
40
|
+
disableHtmlFolder,
|
|
41
|
+
favicon,
|
|
42
|
+
faviconByEntries,
|
|
43
|
+
inject,
|
|
44
|
+
injectByEntries,
|
|
45
|
+
meta,
|
|
46
|
+
metaByEntries,
|
|
47
|
+
mountId,
|
|
48
|
+
title,
|
|
49
|
+
titleByEntries,
|
|
50
|
+
crossorigin,
|
|
51
|
+
templateParameters,
|
|
52
|
+
templateParametersByEntries
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
56
|
+
0 && (module.exports = {
|
|
57
|
+
createHtmlConfig
|
|
58
|
+
});
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var createOutputConfig_exports = {};
|
|
19
|
+
__export(createOutputConfig_exports, {
|
|
20
|
+
createOutputConfig: () => createOutputConfig
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(createOutputConfig_exports);
|
|
23
|
+
function createOutputConfig(config) {
|
|
24
|
+
const {
|
|
25
|
+
assetPrefix,
|
|
26
|
+
copy,
|
|
27
|
+
cssModuleLocalIdentName,
|
|
28
|
+
cssPath,
|
|
29
|
+
jsPath,
|
|
30
|
+
htmlPath,
|
|
31
|
+
mediaPath,
|
|
32
|
+
enableTsLoader,
|
|
33
|
+
path,
|
|
34
|
+
disableInlineRuntimeChunk,
|
|
35
|
+
disableCssExtract,
|
|
36
|
+
disableMinimize,
|
|
37
|
+
disableSourceMap,
|
|
38
|
+
disableTsChecker,
|
|
39
|
+
enableCssModuleTSDeclaration,
|
|
40
|
+
enableInlineScripts,
|
|
41
|
+
enableInlineStyles,
|
|
42
|
+
polyfill,
|
|
43
|
+
dataUriLimit,
|
|
44
|
+
disableAssetsCache,
|
|
45
|
+
enableLatestDecorators,
|
|
46
|
+
disableCssModuleExtension,
|
|
47
|
+
ssg,
|
|
48
|
+
disableNodePolyfill
|
|
49
|
+
} = config.output;
|
|
50
|
+
return {
|
|
51
|
+
assetPrefix,
|
|
52
|
+
copy,
|
|
53
|
+
distPath: {
|
|
54
|
+
root: path,
|
|
55
|
+
css: cssPath,
|
|
56
|
+
js: jsPath,
|
|
57
|
+
html: htmlPath,
|
|
58
|
+
svg: mediaPath || "media",
|
|
59
|
+
image: mediaPath || "media",
|
|
60
|
+
font: mediaPath || "media",
|
|
61
|
+
media: mediaPath || "media"
|
|
62
|
+
},
|
|
63
|
+
dataUriLimit: {
|
|
64
|
+
svg: dataUriLimit,
|
|
65
|
+
image: dataUriLimit,
|
|
66
|
+
font: dataUriLimit,
|
|
67
|
+
media: dataUriLimit
|
|
68
|
+
},
|
|
69
|
+
cssModuleLocalIdentName,
|
|
70
|
+
disableCssExtract,
|
|
71
|
+
disableCssModuleExtension,
|
|
72
|
+
disableInlineRuntimeChunk,
|
|
73
|
+
disableMinimize,
|
|
74
|
+
disableSourceMap,
|
|
75
|
+
disableTsChecker: disableTsChecker || enableTsLoader,
|
|
76
|
+
enableCssModuleTSDeclaration,
|
|
77
|
+
enableInlineScripts,
|
|
78
|
+
enableInlineStyles,
|
|
79
|
+
polyfill,
|
|
80
|
+
disableFilenameHash: disableAssetsCache,
|
|
81
|
+
enableLatestDecorators,
|
|
82
|
+
ssg,
|
|
83
|
+
enableAssetFallback: true,
|
|
84
|
+
enableAssetManifest: true,
|
|
85
|
+
disableNodePolyfill
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
89
|
+
0 && (module.exports = {
|
|
90
|
+
createOutputConfig
|
|
91
|
+
});
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var createSourceConfig_exports = {};
|
|
19
|
+
__export(createSourceConfig_exports, {
|
|
20
|
+
createSourceConfig: () => createSourceConfig
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(createSourceConfig_exports);
|
|
23
|
+
function createSourceConfig(config) {
|
|
24
|
+
const {
|
|
25
|
+
alias,
|
|
26
|
+
envVars,
|
|
27
|
+
globalVars,
|
|
28
|
+
include,
|
|
29
|
+
moduleScopes,
|
|
30
|
+
preEntry,
|
|
31
|
+
entries,
|
|
32
|
+
enableAsyncEntry,
|
|
33
|
+
disableDefaultEntries,
|
|
34
|
+
entriesDir,
|
|
35
|
+
configDir
|
|
36
|
+
} = config.source;
|
|
37
|
+
const builderGlobalVars = globalVars || {};
|
|
38
|
+
for (const envVar of envVars || []) {
|
|
39
|
+
const envVarValue = process.env[envVar];
|
|
40
|
+
envVarValue && (builderGlobalVars[`process.env.${envVar}`] = envVarValue);
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
alias,
|
|
44
|
+
moduleScopes,
|
|
45
|
+
globalVars: builderGlobalVars,
|
|
46
|
+
include,
|
|
47
|
+
preEntry,
|
|
48
|
+
entries,
|
|
49
|
+
enableAsyncEntry,
|
|
50
|
+
disableDefaultEntries,
|
|
51
|
+
entriesDir,
|
|
52
|
+
configDir,
|
|
53
|
+
resolveExtensionPrefix: {
|
|
54
|
+
web: ".web",
|
|
55
|
+
node: ".node"
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
60
|
+
0 && (module.exports = {
|
|
61
|
+
createSourceConfig
|
|
62
|
+
});
|