@modern-js/utils 2.12.0 → 2.12.1-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{alias.js → cjs/alias.js} +4 -15
- package/dist/{analyzeProject.js → cjs/analyzeProject.js} +5 -25
- package/dist/{babel.js → cjs/babel.js} +9 -16
- package/dist/{compatRequire.js → cjs/compatRequire.js} +4 -17
- package/dist/{compiled.js → cjs/compiled.js} +3 -3
- package/dist/cjs/emptyDir.js +32 -0
- package/dist/{getEntryOptions.js → cjs/getEntryOptions.js} +1 -15
- package/dist/{getPackageManager.js → cjs/getPackageManager.js} +19 -41
- package/dist/{getPort.js → cjs/getPort.js} +4 -24
- package/dist/{getServerConfig.js → cjs/getServerConfig.js} +2 -22
- package/dist/{import.js → cjs/import.js} +1 -1
- package/dist/{logger.js → cjs/logger.js} +5 -16
- package/dist/{monorepo.js → cjs/monorepo.js} +4 -15
- package/dist/cjs/nodeEnv.js +55 -0
- package/dist/{path.js → cjs/path.js} +1 -1
- package/dist/{pathSerializer.js → cjs/pathSerializer.js} +1 -1
- package/dist/{react.js → cjs/react.js} +4 -15
- package/dist/{runtimeExports.js → cjs/runtimeExports.js} +1 -1
- package/dist/{universal → cjs/universal}/nestedRoutes.js +2 -19
- package/dist/cjs/version.js +59 -0
- package/dist/{watch.js → cjs/watch.js} +9 -29
- package/dist/esm/FileSizeReporter.js +180 -0
- package/dist/esm/alias.js +83 -0
- package/dist/esm/analyzeProject.js +168 -0
- package/dist/esm/applyOptionsChain.js +26 -0
- package/dist/esm/babel.js +169 -0
- package/dist/esm/chainId.js +92 -0
- package/dist/esm/clearConsole.js +6 -0
- package/dist/esm/commands.js +17 -0
- package/dist/esm/compatRequire.js +68 -0
- package/dist/esm/compiled.js +34 -0
- package/dist/esm/constants.js +317 -0
- package/dist/esm/debug.js +5 -0
- package/dist/esm/emptyDir.js +158 -0
- package/dist/esm/ensureAbsolutePath.js +5 -0
- package/dist/esm/ensureArray.js +9 -0
- package/dist/esm/findExists.js +27 -0
- package/dist/esm/generateMetaTags.js +40 -0
- package/dist/esm/getBrowserslist.js +12 -0
- package/dist/esm/getCoreJsVersion.js +57 -0
- package/dist/esm/getEntryOptions.js +45 -0
- package/dist/esm/getPackageManager.js +187 -0
- package/dist/esm/getPort.js +215 -0
- package/dist/esm/getServerConfig.js +145 -0
- package/dist/esm/getTargetDir.js +6 -0
- package/dist/esm/import.js +8 -0
- package/dist/esm/index.js +44 -0
- package/dist/esm/is/index.js +85 -0
- package/dist/esm/is/nodeEnv.js +16 -0
- package/dist/esm/is/platform.js +7 -0
- package/dist/esm/is/type.js +25 -0
- package/dist/esm/logger.js +207 -0
- package/dist/esm/monorepo.js +109 -0
- package/dist/esm/nodeEnv.js +258 -0
- package/dist/esm/path.js +85 -0
- package/dist/esm/pathSerializer.js +85 -0
- package/dist/esm/plugin.js +45 -0
- package/dist/esm/prettyInstructions.js +96 -0
- package/dist/esm/printBuildError.js +24 -0
- package/dist/esm/react.js +43 -0
- package/dist/esm/readTsConfig.js +10 -0
- package/dist/esm/removeSlash.js +10 -0
- package/dist/esm/resolve.js +42 -0
- package/dist/esm/routes.js +19 -0
- package/dist/esm/runtimeExports.js +65 -0
- package/dist/esm/ssr.js +3 -0
- package/dist/esm/storage.js +36 -0
- package/dist/esm/testUtils.js +13 -0
- package/dist/esm/types.js +1 -0
- package/dist/esm/universal/constants.js +3 -0
- package/dist/esm/universal/formatWebpack.js +108 -0
- package/dist/esm/universal/nestedRoutes.js +174 -0
- package/dist/esm/universal/remixRouter.js +1 -0
- package/dist/esm/universal/serialize.js +7 -0
- package/dist/esm/version.js +193 -0
- package/dist/esm/wait.js +7 -0
- package/dist/esm/watch.js +230 -0
- package/dist/esm-node/FileSizeReporter.js +133 -0
- package/dist/esm-node/alias.js +61 -0
- package/dist/esm-node/analyzeProject.js +17 -0
- package/dist/esm-node/applyOptionsChain.js +35 -0
- package/dist/esm-node/babel.js +105 -0
- package/dist/esm-node/chainId.js +173 -0
- package/dist/esm-node/clearConsole.js +8 -0
- package/dist/esm-node/commands.js +22 -0
- package/dist/esm-node/compatRequire.js +42 -0
- package/dist/esm-node/compiled.js +77 -0
- package/dist/esm-node/constants.js +264 -0
- package/dist/esm-node/debug.js +5 -0
- package/dist/esm-node/emptyDir.js +9 -0
- package/dist/esm-node/ensureAbsolutePath.js +5 -0
- package/dist/esm-node/ensureArray.js +9 -0
- package/dist/esm-node/findExists.js +12 -0
- package/dist/esm-node/generateMetaTags.js +38 -0
- package/dist/esm-node/getBrowserslist.js +7 -0
- package/dist/esm-node/getCoreJsVersion.js +13 -0
- package/dist/esm-node/getEntryOptions.js +17 -0
- package/dist/esm-node/getPackageManager.js +32 -0
- package/dist/esm-node/getPort.js +59 -0
- package/dist/esm-node/getServerConfig.js +14 -0
- package/dist/esm-node/getTargetDir.js +8 -0
- package/dist/esm-node/import.js +9 -0
- package/dist/esm-node/index.js +44 -0
- package/dist/esm-node/is/index.js +71 -0
- package/dist/esm-node/is/nodeEnv.js +12 -0
- package/dist/esm-node/is/platform.js +6 -0
- package/dist/esm-node/is/type.js +34 -0
- package/dist/esm-node/logger.js +100 -0
- package/dist/esm-node/monorepo.js +87 -0
- package/dist/esm-node/nodeEnv.js +30 -0
- package/dist/esm-node/path.js +50 -0
- package/dist/esm-node/pathSerializer.js +46 -0
- package/dist/esm-node/plugin.js +23 -0
- package/dist/esm-node/prettyInstructions.js +77 -0
- package/dist/esm-node/printBuildError.js +34 -0
- package/dist/esm-node/react.js +20 -0
- package/dist/esm-node/readTsConfig.js +13 -0
- package/dist/esm-node/removeSlash.js +8 -0
- package/dist/esm-node/resolve.js +38 -0
- package/dist/esm-node/routes.js +24 -0
- package/dist/esm-node/runtimeExports.js +40 -0
- package/dist/esm-node/ssr.js +6 -0
- package/dist/esm-node/storage.js +42 -0
- package/dist/esm-node/testUtils.js +15 -0
- package/dist/esm-node/types.js +0 -0
- package/dist/esm-node/universal/constants.js +6 -0
- package/dist/esm-node/universal/formatWebpack.js +77 -0
- package/dist/esm-node/universal/nestedRoutes.js +93 -0
- package/dist/esm-node/universal/remixRouter.js +1 -0
- package/dist/esm-node/universal/serialize.js +7 -0
- package/dist/esm-node/version.js +25 -0
- package/dist/esm-node/wait.js +6 -0
- package/dist/esm-node/watch.js +36 -0
- package/dist/types/compiled.d.ts +43 -0
- package/dist/{debug.d.ts → types/debug.d.ts} +1 -1
- package/dist/{logger.d.ts → types/logger.d.ts} +1 -1
- package/package.json +53 -21
- package/dist/compiled.d.ts +0 -43
- package/dist/emptyDir.js +0 -52
- package/dist/nodeEnv.js +0 -81
- package/dist/version.js +0 -92
- /package/dist/{FileSizeReporter.js → cjs/FileSizeReporter.js} +0 -0
- /package/dist/{applyOptionsChain.js → cjs/applyOptionsChain.js} +0 -0
- /package/dist/{chainId.js → cjs/chainId.js} +0 -0
- /package/dist/{clearConsole.js → cjs/clearConsole.js} +0 -0
- /package/dist/{commands.js → cjs/commands.js} +0 -0
- /package/dist/{constants.js → cjs/constants.js} +0 -0
- /package/dist/{debug.js → cjs/debug.js} +0 -0
- /package/dist/{ensureAbsolutePath.js → cjs/ensureAbsolutePath.js} +0 -0
- /package/dist/{ensureArray.js → cjs/ensureArray.js} +0 -0
- /package/dist/{findExists.js → cjs/findExists.js} +0 -0
- /package/dist/{generateMetaTags.js → cjs/generateMetaTags.js} +0 -0
- /package/dist/{getBrowserslist.js → cjs/getBrowserslist.js} +0 -0
- /package/dist/{getCoreJsVersion.js → cjs/getCoreJsVersion.js} +0 -0
- /package/dist/{getTargetDir.js → cjs/getTargetDir.js} +0 -0
- /package/dist/{index.js → cjs/index.js} +0 -0
- /package/dist/{is → cjs/is}/index.js +0 -0
- /package/dist/{is → cjs/is}/nodeEnv.js +0 -0
- /package/dist/{is → cjs/is}/platform.js +0 -0
- /package/dist/{is → cjs/is}/type.js +0 -0
- /package/dist/{plugin.js → cjs/plugin.js} +0 -0
- /package/dist/{prettyInstructions.js → cjs/prettyInstructions.js} +0 -0
- /package/dist/{printBuildError.js → cjs/printBuildError.js} +0 -0
- /package/dist/{readTsConfig.js → cjs/readTsConfig.js} +0 -0
- /package/dist/{removeSlash.js → cjs/removeSlash.js} +0 -0
- /package/dist/{resolve.js → cjs/resolve.js} +0 -0
- /package/dist/{routes.js → cjs/routes.js} +0 -0
- /package/dist/{ssr.js → cjs/ssr.js} +0 -0
- /package/dist/{storage.js → cjs/storage.js} +0 -0
- /package/dist/{testUtils.js → cjs/testUtils.js} +0 -0
- /package/dist/{types.js → cjs/types.js} +0 -0
- /package/dist/{universal → cjs/universal}/constants.js +0 -0
- /package/dist/{universal → cjs/universal}/formatWebpack.js +0 -0
- /package/dist/{universal → cjs/universal}/remixRouter.js +0 -0
- /package/dist/{universal → cjs/universal}/serialize.js +0 -0
- /package/dist/{wait.js → cjs/wait.js} +0 -0
- /package/dist/{FileSizeReporter.d.ts → types/FileSizeReporter.d.ts} +0 -0
- /package/dist/{alias.d.ts → types/alias.d.ts} +0 -0
- /package/dist/{analyzeProject.d.ts → types/analyzeProject.d.ts} +0 -0
- /package/dist/{applyOptionsChain.d.ts → types/applyOptionsChain.d.ts} +0 -0
- /package/dist/{babel.d.ts → types/babel.d.ts} +0 -0
- /package/dist/{chainId.d.ts → types/chainId.d.ts} +0 -0
- /package/dist/{clearConsole.d.ts → types/clearConsole.d.ts} +0 -0
- /package/dist/{commands.d.ts → types/commands.d.ts} +0 -0
- /package/dist/{compatRequire.d.ts → types/compatRequire.d.ts} +0 -0
- /package/dist/{constants.d.ts → types/constants.d.ts} +0 -0
- /package/dist/{emptyDir.d.ts → types/emptyDir.d.ts} +0 -0
- /package/dist/{ensureAbsolutePath.d.ts → types/ensureAbsolutePath.d.ts} +0 -0
- /package/dist/{ensureArray.d.ts → types/ensureArray.d.ts} +0 -0
- /package/dist/{findExists.d.ts → types/findExists.d.ts} +0 -0
- /package/dist/{generateMetaTags.d.ts → types/generateMetaTags.d.ts} +0 -0
- /package/dist/{getBrowserslist.d.ts → types/getBrowserslist.d.ts} +0 -0
- /package/dist/{getCoreJsVersion.d.ts → types/getCoreJsVersion.d.ts} +0 -0
- /package/dist/{getEntryOptions.d.ts → types/getEntryOptions.d.ts} +0 -0
- /package/dist/{getPackageManager.d.ts → types/getPackageManager.d.ts} +0 -0
- /package/dist/{getPort.d.ts → types/getPort.d.ts} +0 -0
- /package/dist/{getServerConfig.d.ts → types/getServerConfig.d.ts} +0 -0
- /package/dist/{getTargetDir.d.ts → types/getTargetDir.d.ts} +0 -0
- /package/dist/{import.d.ts → types/import.d.ts} +0 -0
- /package/dist/{index.d.ts → types/index.d.ts} +0 -0
- /package/dist/{is → types/is}/index.d.ts +0 -0
- /package/dist/{is → types/is}/nodeEnv.d.ts +0 -0
- /package/dist/{is → types/is}/platform.d.ts +0 -0
- /package/dist/{is → types/is}/type.d.ts +0 -0
- /package/dist/{monorepo.d.ts → types/monorepo.d.ts} +0 -0
- /package/dist/{nodeEnv.d.ts → types/nodeEnv.d.ts} +0 -0
- /package/dist/{path.d.ts → types/path.d.ts} +0 -0
- /package/dist/{pathSerializer.d.ts → types/pathSerializer.d.ts} +0 -0
- /package/dist/{plugin.d.ts → types/plugin.d.ts} +0 -0
- /package/dist/{prettyInstructions.d.ts → types/prettyInstructions.d.ts} +0 -0
- /package/dist/{printBuildError.d.ts → types/printBuildError.d.ts} +0 -0
- /package/dist/{react.d.ts → types/react.d.ts} +0 -0
- /package/dist/{readTsConfig.d.ts → types/readTsConfig.d.ts} +0 -0
- /package/dist/{removeSlash.d.ts → types/removeSlash.d.ts} +0 -0
- /package/dist/{resolve.d.ts → types/resolve.d.ts} +0 -0
- /package/dist/{routes.d.ts → types/routes.d.ts} +0 -0
- /package/dist/{runtimeExports.d.ts → types/runtimeExports.d.ts} +0 -0
- /package/dist/{ssr.d.ts → types/ssr.d.ts} +0 -0
- /package/dist/{storage.d.ts → types/storage.d.ts} +0 -0
- /package/dist/{testUtils.d.ts → types/testUtils.d.ts} +0 -0
- /package/dist/{types.d.ts → types/types.d.ts} +0 -0
- /package/dist/{universal → types/universal}/constants.d.ts +0 -0
- /package/dist/{universal → types/universal}/formatWebpack.d.ts +0 -0
- /package/dist/{universal → types/universal}/nestedRoutes.d.ts +0 -0
- /package/dist/{universal → types/universal}/remixRouter.d.ts +0 -0
- /package/dist/{universal → types/universal}/serialize.d.ts +0 -0
- /package/dist/{version.d.ts → types/version.d.ts} +0 -0
- /package/dist/{wait.d.ts → types/wait.d.ts} +0 -0
- /package/dist/{watch.d.ts → types/watch.d.ts} +0 -0
@@ -0,0 +1,317 @@
|
|
1
|
+
function _defineProperty(obj, key, value) {
|
2
|
+
if (key in obj) {
|
3
|
+
Object.defineProperty(obj, key, {
|
4
|
+
value: value,
|
5
|
+
enumerable: true,
|
6
|
+
configurable: true,
|
7
|
+
writable: true
|
8
|
+
});
|
9
|
+
} else {
|
10
|
+
obj[key] = value;
|
11
|
+
}
|
12
|
+
return obj;
|
13
|
+
}
|
14
|
+
var ROUTE_SPEC_FILE = "route.json";
|
15
|
+
var MAIN_ENTRY_NAME = "main";
|
16
|
+
var LAUNCH_EDITOR_ENDPOINT = "/__open-stack-frame-in-editor";
|
17
|
+
var SERVER_BUNDLE_DIRECTORY = "bundles";
|
18
|
+
var SERVER_WORKER_BUNDLE_DIRECTORY = "worker";
|
19
|
+
var ENTRY_NAME_PATTERN = "^[a-zA-Z0-9_-]+$";
|
20
|
+
var SERVER_RENDER_FUNCTION_NAME = "serverRender";
|
21
|
+
var LOADABLE_STATS_FILE = "loadable-stats.json";
|
22
|
+
var API_DIR = "api";
|
23
|
+
var SERVER_DIR = "server";
|
24
|
+
var SHARED_DIR = "shared";
|
25
|
+
var CONFIG_CACHE_DIR = "./node_modules/.cache/node-bundle-require";
|
26
|
+
var CONFIG_FILE_EXTENSIONS = [
|
27
|
+
".js",
|
28
|
+
".ts",
|
29
|
+
".mjs"
|
30
|
+
];
|
31
|
+
var OUTPUT_CONFIG_FILE = "modern.config.json";
|
32
|
+
var DEFAULT_SERVER_CONFIG = "modern.server-runtime.config";
|
33
|
+
var ROUTE_MANIFEST_FILE = "routes-manifest.json";
|
34
|
+
var LOADER_ROUTES_DIR = "loader-routes";
|
35
|
+
var DEFAULT_DEV_HOST = "0.0.0.0";
|
36
|
+
var INTERNAL_APP_TOOLS_PLUGINS = {
|
37
|
+
"@modern-js/app-tools": "@modern-js/app-tools/cli",
|
38
|
+
"@modern-js/plugin-proxy": "@modern-js/plugin-proxy/cli",
|
39
|
+
"@modern-js/plugin-ssg": "@modern-js/plugin-ssg/cli",
|
40
|
+
"@modern-js/plugin-bff": "@modern-js/plugin-bff/cli",
|
41
|
+
"@modern-js/plugin-testing": "@modern-js/plugin-testing/cli",
|
42
|
+
"@modern-js/plugin-storybook": "@modern-js/plugin-storybook/cli",
|
43
|
+
"@modern-js/plugin-express": "@modern-js/plugin-express/cli",
|
44
|
+
"@modern-js/plugin-egg": "@modern-js/plugin-egg/cli",
|
45
|
+
"@modern-js/plugin-koa": "@modern-js/plugin-koa/cli",
|
46
|
+
"@modern-js/plugin-nest": "@modern-js/plugin-nest/cli",
|
47
|
+
"@modern-js/plugin-server": "@modern-js/plugin-server/cli",
|
48
|
+
"@modern-js/plugin-garfish": "@modern-js/plugin-garfish/cli",
|
49
|
+
"@modern-js/plugin-tailwindcss": "@modern-js/plugin-tailwindcss/cli",
|
50
|
+
"@modern-js/plugin-polyfill": "@modern-js/plugin-polyfill/cli",
|
51
|
+
// legacy router (inner react-router-dom v5)
|
52
|
+
"@modern-js/plugin-router-v5": "@modern-js/plugin-router-v5/cli"
|
53
|
+
};
|
54
|
+
var INTERNAL_APP_TOOLS_RUNTIME_PLUGINS = {
|
55
|
+
"@modern-js/runtime": "@modern-js/runtime/cli"
|
56
|
+
};
|
57
|
+
var INTERNAL_MODULE_TOOLS_PLUGINS = {
|
58
|
+
"@modern-js/module-tools": "@modern-js/module-tools",
|
59
|
+
"@modern-js/doc-tools": "@modern-js/doc-tools",
|
60
|
+
"@modern-js/runtime": "@modern-js/runtime/cli",
|
61
|
+
"@modern-js/plugin-testing": "@modern-js/plugin-testing/cli",
|
62
|
+
"@modern-js/plugin-storybook": "@modern-js/plugin-storybook/cli",
|
63
|
+
"@modern-js/plugin-tailwindcss": "@modern-js/plugin-tailwindcss/cli",
|
64
|
+
// TODO: Maybe can remove it
|
65
|
+
"@modern-js/plugin-nocode": "@modern-js/plugin-nocode/cli",
|
66
|
+
// legacy router (inner react-router-dom v5)
|
67
|
+
"@modern-js/plugin-router-legacy": "@modern-js/plugin-router-legacy/cli"
|
68
|
+
};
|
69
|
+
var INTERNAL_MONOREPO_TOOLS_PLUGINS = {
|
70
|
+
"@modern-js/monorepo-tools": "@modern-js/monorepo-tools/cli",
|
71
|
+
"@modern-js/plugin-testing": "@modern-js/plugin-testing/cli"
|
72
|
+
};
|
73
|
+
var INTERNAL_DOC_TOOLS_PLUGINS = {
|
74
|
+
"@modern-js/doc-tools": "@modern-js/doc-tools",
|
75
|
+
"@modern-js/runtime": "@modern-js/runtime/cli",
|
76
|
+
"@modern-js/plugin-testing": "@modern-js/plugin-testing/cli"
|
77
|
+
};
|
78
|
+
var INTERNAL_CLI_PLUGINS = {
|
79
|
+
"@modern-js/app-tools": "@modern-js/app-tools/cli",
|
80
|
+
"@modern-js/monorepo-tools": "@modern-js/monorepo-tools/cli",
|
81
|
+
"@modern-js/module-tools": "@modern-js/module-tools",
|
82
|
+
"@modern-js/doc-tools": "@modern-js/doc-tools",
|
83
|
+
"@modern-js/runtime": "@modern-js/runtime/cli",
|
84
|
+
"@modern-js/plugin-proxy": "@modern-js/plugin-proxy/cli",
|
85
|
+
"@modern-js/plugin-ssg": "@modern-js/plugin-ssg/cli",
|
86
|
+
"@modern-js/plugin-bff": "@modern-js/plugin-bff/cli",
|
87
|
+
"@modern-js/plugin-testing": "@modern-js/plugin-testing/cli",
|
88
|
+
"@modern-js/plugin-storybook": "@modern-js/plugin-storybook/cli",
|
89
|
+
"@modern-js/plugin-express": "@modern-js/plugin-express/cli",
|
90
|
+
"@modern-js/plugin-egg": "@modern-js/plugin-egg/cli",
|
91
|
+
"@modern-js/plugin-koa": "@modern-js/plugin-koa/cli",
|
92
|
+
"@modern-js/plugin-nest": "@modern-js/plugin-nest/cli",
|
93
|
+
"@modern-js/plugin-server": "@modern-js/plugin-server/cli",
|
94
|
+
"@modern-js/plugin-swc": "@modern-js/plugin-swc",
|
95
|
+
"@modern-js/plugin-garfish": "@modern-js/plugin-garfish/cli",
|
96
|
+
"@modern-js/plugin-tailwindcss": "@modern-js/plugin-tailwindcss/cli",
|
97
|
+
"@modern-js/plugin-polyfill": "@modern-js/plugin-polyfill/cli",
|
98
|
+
// TODO: Maybe can remove it
|
99
|
+
"@modern-js/plugin-nocode": "@modern-js/plugin-nocode/cli",
|
100
|
+
// legacy router (inner react-router-dom v5)
|
101
|
+
"@modern-js/plugin-router-v5": "@modern-js/plugin-router-v5/cli"
|
102
|
+
};
|
103
|
+
var SERVER_PLUGIN_BFF = "@modern-js/plugin-bff";
|
104
|
+
var SERVER_PLUGIN_EXPRESS = "@modern-js/plugin-express";
|
105
|
+
var SERVER_PLUGIN_EGG = "@modern-js/plugin-egg";
|
106
|
+
var SERVER_PLUGIN_KOA = "@modern-js/plugin-koa";
|
107
|
+
var SERVER_PLUGIN_NEST = "@modern-js/plugin-nest";
|
108
|
+
var SERVER_PLUGIN_SERVER = "@modern-js/plugin-server";
|
109
|
+
var SERVER_PLUGIN_POLYFILL = "@modern-js/plugin-polyfill";
|
110
|
+
var _obj;
|
111
|
+
var INTERNAL_SERVER_PLUGINS = (_obj = {}, _defineProperty(_obj, SERVER_PLUGIN_BFF, "@modern-js/plugin-bff/server"), _defineProperty(_obj, SERVER_PLUGIN_EXPRESS, "@modern-js/plugin-express/server"), _defineProperty(_obj, SERVER_PLUGIN_EGG, "@modern-js/plugin-egg/server"), _defineProperty(_obj, SERVER_PLUGIN_KOA, "@modern-js/plugin-koa/server"), _defineProperty(_obj, SERVER_PLUGIN_NEST, "@modern-js/plugin-nest/server"), _defineProperty(_obj, SERVER_PLUGIN_SERVER, "@modern-js/plugin-server/server"), _defineProperty(_obj, SERVER_PLUGIN_POLYFILL, "@modern-js/plugin-polyfill/server"), _obj);
|
112
|
+
var PLUGIN_SCHEMAS = {
|
113
|
+
"@modern-js/runtime": [
|
114
|
+
{
|
115
|
+
target: "runtime",
|
116
|
+
schema: {
|
117
|
+
type: "object",
|
118
|
+
additionalProperties: false
|
119
|
+
}
|
120
|
+
},
|
121
|
+
{
|
122
|
+
target: "runtimeByEntries",
|
123
|
+
schema: {
|
124
|
+
type: "object",
|
125
|
+
patternProperties: _defineProperty({}, ENTRY_NAME_PATTERN, {
|
126
|
+
type: "object"
|
127
|
+
}),
|
128
|
+
additionalProperties: false
|
129
|
+
}
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"@modern-js/plugin-swc": [
|
133
|
+
{
|
134
|
+
target: "tools.swc",
|
135
|
+
schema: {
|
136
|
+
typeof: [
|
137
|
+
"object"
|
138
|
+
]
|
139
|
+
}
|
140
|
+
}
|
141
|
+
],
|
142
|
+
"@modern-js/plugin-bff": [
|
143
|
+
{
|
144
|
+
target: "bff",
|
145
|
+
schema: {
|
146
|
+
type: "object",
|
147
|
+
properties: {
|
148
|
+
prefix: {
|
149
|
+
type: [
|
150
|
+
"string",
|
151
|
+
"array"
|
152
|
+
],
|
153
|
+
items: {
|
154
|
+
type: "string"
|
155
|
+
}
|
156
|
+
},
|
157
|
+
fetcher: {
|
158
|
+
type: "string"
|
159
|
+
},
|
160
|
+
proxy: {
|
161
|
+
type: "object"
|
162
|
+
},
|
163
|
+
requestCreator: {
|
164
|
+
type: "string"
|
165
|
+
}
|
166
|
+
}
|
167
|
+
}
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"@modern-js/plugin-tailwindcss": [
|
171
|
+
{
|
172
|
+
target: "tools.tailwindcss",
|
173
|
+
schema: {
|
174
|
+
typeof: [
|
175
|
+
"object",
|
176
|
+
"function"
|
177
|
+
]
|
178
|
+
}
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"@modern-js/plugin-proxy": [
|
182
|
+
{
|
183
|
+
target: "dev.proxy",
|
184
|
+
schema: {
|
185
|
+
typeof: [
|
186
|
+
"string",
|
187
|
+
"object"
|
188
|
+
]
|
189
|
+
}
|
190
|
+
}
|
191
|
+
],
|
192
|
+
"@modern-js/plugin-ssg": [
|
193
|
+
{
|
194
|
+
target: "output.ssg",
|
195
|
+
schema: {
|
196
|
+
oneOf: [
|
197
|
+
{
|
198
|
+
type: "boolean"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
type: "object"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
instanceof: "Function"
|
205
|
+
}
|
206
|
+
]
|
207
|
+
}
|
208
|
+
}
|
209
|
+
],
|
210
|
+
"@modern-js/plugin-state": [
|
211
|
+
{
|
212
|
+
target: "runtime.state",
|
213
|
+
schema: {
|
214
|
+
type: [
|
215
|
+
"boolean",
|
216
|
+
"object"
|
217
|
+
]
|
218
|
+
}
|
219
|
+
}
|
220
|
+
],
|
221
|
+
"@modern-js/plugin-design-token": [
|
222
|
+
// Legacy Features
|
223
|
+
{
|
224
|
+
target: "source.designSystem",
|
225
|
+
schema: {
|
226
|
+
typeof: [
|
227
|
+
"object"
|
228
|
+
]
|
229
|
+
}
|
230
|
+
},
|
231
|
+
{
|
232
|
+
target: "source.designSystem.supportStyledComponents",
|
233
|
+
schema: {
|
234
|
+
type: [
|
235
|
+
"boolean"
|
236
|
+
]
|
237
|
+
}
|
238
|
+
},
|
239
|
+
{
|
240
|
+
target: "designSystem",
|
241
|
+
schema: {
|
242
|
+
typeof: [
|
243
|
+
"object"
|
244
|
+
]
|
245
|
+
}
|
246
|
+
}
|
247
|
+
],
|
248
|
+
"@modern-js/plugin-router": [
|
249
|
+
{
|
250
|
+
target: "runtime.router",
|
251
|
+
schema: {
|
252
|
+
type: [
|
253
|
+
"boolean",
|
254
|
+
"object"
|
255
|
+
]
|
256
|
+
}
|
257
|
+
}
|
258
|
+
],
|
259
|
+
"@modern-js/plugin-testing": [
|
260
|
+
{
|
261
|
+
target: "testing",
|
262
|
+
schema: {
|
263
|
+
typeof: [
|
264
|
+
"object"
|
265
|
+
]
|
266
|
+
}
|
267
|
+
},
|
268
|
+
{
|
269
|
+
target: "tools.jest",
|
270
|
+
schema: {
|
271
|
+
typeof: [
|
272
|
+
"object",
|
273
|
+
"function"
|
274
|
+
]
|
275
|
+
}
|
276
|
+
}
|
277
|
+
],
|
278
|
+
"@modern-js/plugin-garfish": [
|
279
|
+
{
|
280
|
+
target: "runtime.masterApp",
|
281
|
+
schema: {
|
282
|
+
type: [
|
283
|
+
"boolean",
|
284
|
+
"object"
|
285
|
+
]
|
286
|
+
}
|
287
|
+
},
|
288
|
+
{
|
289
|
+
target: "dev.withMasterApp",
|
290
|
+
schema: {
|
291
|
+
type: [
|
292
|
+
"object"
|
293
|
+
]
|
294
|
+
}
|
295
|
+
},
|
296
|
+
{
|
297
|
+
target: "deploy.microFrontend",
|
298
|
+
schema: {
|
299
|
+
type: [
|
300
|
+
"boolean",
|
301
|
+
"object"
|
302
|
+
]
|
303
|
+
}
|
304
|
+
}
|
305
|
+
],
|
306
|
+
"@modern-js/plugin-nocode": []
|
307
|
+
};
|
308
|
+
var DEFAULT_BABEL_PRESET_TYPESCRIPT_OPTIONS = {
|
309
|
+
allowNamespaces: true,
|
310
|
+
allExtensions: true,
|
311
|
+
allowDeclareFields: true,
|
312
|
+
// aligns Babel's behavior with TypeScript's default behavior.
|
313
|
+
// https://babeljs.io/docs/en/babel-preset-typescript#optimizeconstenums
|
314
|
+
optimizeConstEnums: true,
|
315
|
+
isTSX: true
|
316
|
+
};
|
317
|
+
export { API_DIR, CONFIG_CACHE_DIR, CONFIG_FILE_EXTENSIONS, DEFAULT_BABEL_PRESET_TYPESCRIPT_OPTIONS, DEFAULT_DEV_HOST, DEFAULT_SERVER_CONFIG, ENTRY_NAME_PATTERN, INTERNAL_APP_TOOLS_PLUGINS, INTERNAL_APP_TOOLS_RUNTIME_PLUGINS, INTERNAL_CLI_PLUGINS, INTERNAL_DOC_TOOLS_PLUGINS, INTERNAL_MODULE_TOOLS_PLUGINS, INTERNAL_MONOREPO_TOOLS_PLUGINS, INTERNAL_SERVER_PLUGINS, LAUNCH_EDITOR_ENDPOINT, LOADABLE_STATS_FILE, LOADER_ROUTES_DIR, MAIN_ENTRY_NAME, OUTPUT_CONFIG_FILE, PLUGIN_SCHEMAS, ROUTE_MANIFEST_FILE, ROUTE_SPEC_FILE, SERVER_BUNDLE_DIRECTORY, SERVER_DIR, SERVER_PLUGIN_BFF, SERVER_PLUGIN_EGG, SERVER_PLUGIN_EXPRESS, SERVER_PLUGIN_KOA, SERVER_PLUGIN_NEST, SERVER_PLUGIN_POLYFILL, SERVER_PLUGIN_SERVER, SERVER_RENDER_FUNCTION_NAME, SERVER_WORKER_BUNDLE_DIRECTORY, SHARED_DIR };
|
@@ -0,0 +1,158 @@
|
|
1
|
+
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
2
|
+
try {
|
3
|
+
var info = gen[key](arg);
|
4
|
+
var value = info.value;
|
5
|
+
} catch (error) {
|
6
|
+
reject(error);
|
7
|
+
return;
|
8
|
+
}
|
9
|
+
if (info.done) {
|
10
|
+
resolve(value);
|
11
|
+
} else {
|
12
|
+
Promise.resolve(value).then(_next, _throw);
|
13
|
+
}
|
14
|
+
}
|
15
|
+
function _asyncToGenerator(fn) {
|
16
|
+
return function() {
|
17
|
+
var self = this, args = arguments;
|
18
|
+
return new Promise(function(resolve, reject) {
|
19
|
+
var gen = fn.apply(self, args);
|
20
|
+
function _next(value) {
|
21
|
+
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
|
22
|
+
}
|
23
|
+
function _throw(err) {
|
24
|
+
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
|
25
|
+
}
|
26
|
+
_next(undefined);
|
27
|
+
});
|
28
|
+
};
|
29
|
+
}
|
30
|
+
var __generator = this && this.__generator || function(thisArg, body) {
|
31
|
+
var f, y, t, g, _ = {
|
32
|
+
label: 0,
|
33
|
+
sent: function() {
|
34
|
+
if (t[0] & 1) throw t[1];
|
35
|
+
return t[1];
|
36
|
+
},
|
37
|
+
trys: [],
|
38
|
+
ops: []
|
39
|
+
};
|
40
|
+
return(g = {
|
41
|
+
next: verb(0),
|
42
|
+
"throw": verb(1),
|
43
|
+
"return": verb(2)
|
44
|
+
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
45
|
+
return this;
|
46
|
+
}), g);
|
47
|
+
function verb(n) {
|
48
|
+
return function(v) {
|
49
|
+
return step([
|
50
|
+
n,
|
51
|
+
v
|
52
|
+
]);
|
53
|
+
};
|
54
|
+
}
|
55
|
+
function step(op) {
|
56
|
+
if (f) throw new TypeError("Generator is already executing.");
|
57
|
+
while(_)try {
|
58
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
59
|
+
if (y = 0, t) op = [
|
60
|
+
op[0] & 2,
|
61
|
+
t.value
|
62
|
+
];
|
63
|
+
switch(op[0]){
|
64
|
+
case 0:
|
65
|
+
case 1:
|
66
|
+
t = op;
|
67
|
+
break;
|
68
|
+
case 4:
|
69
|
+
_.label++;
|
70
|
+
return {
|
71
|
+
value: op[1],
|
72
|
+
done: false
|
73
|
+
};
|
74
|
+
case 5:
|
75
|
+
_.label++;
|
76
|
+
y = op[1];
|
77
|
+
op = [
|
78
|
+
0
|
79
|
+
];
|
80
|
+
continue;
|
81
|
+
case 7:
|
82
|
+
op = _.ops.pop();
|
83
|
+
_.trys.pop();
|
84
|
+
continue;
|
85
|
+
default:
|
86
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
87
|
+
_ = 0;
|
88
|
+
continue;
|
89
|
+
}
|
90
|
+
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
91
|
+
_.label = op[1];
|
92
|
+
break;
|
93
|
+
}
|
94
|
+
if (op[0] === 6 && _.label < t[1]) {
|
95
|
+
_.label = t[1];
|
96
|
+
t = op;
|
97
|
+
break;
|
98
|
+
}
|
99
|
+
if (t && _.label < t[2]) {
|
100
|
+
_.label = t[2];
|
101
|
+
_.ops.push(op);
|
102
|
+
break;
|
103
|
+
}
|
104
|
+
if (t[2]) _.ops.pop();
|
105
|
+
_.trys.pop();
|
106
|
+
continue;
|
107
|
+
}
|
108
|
+
op = body.call(thisArg, _);
|
109
|
+
} catch (e) {
|
110
|
+
op = [
|
111
|
+
6,
|
112
|
+
e
|
113
|
+
];
|
114
|
+
y = 0;
|
115
|
+
} finally{
|
116
|
+
f = t = 0;
|
117
|
+
}
|
118
|
+
if (op[0] & 5) throw op[1];
|
119
|
+
return {
|
120
|
+
value: op[0] ? op[1] : void 0,
|
121
|
+
done: true
|
122
|
+
};
|
123
|
+
}
|
124
|
+
};
|
125
|
+
import { fs } from "./compiled";
|
126
|
+
var emptyDir = function() {
|
127
|
+
var _ref = _asyncToGenerator(function(dir) {
|
128
|
+
return __generator(this, function(_state) {
|
129
|
+
switch(_state.label){
|
130
|
+
case 0:
|
131
|
+
return [
|
132
|
+
4,
|
133
|
+
fs.pathExists(dir)
|
134
|
+
];
|
135
|
+
case 1:
|
136
|
+
if (!_state.sent()) return [
|
137
|
+
3,
|
138
|
+
3
|
139
|
+
];
|
140
|
+
return [
|
141
|
+
4,
|
142
|
+
fs.emptyDir(dir)
|
143
|
+
];
|
144
|
+
case 2:
|
145
|
+
_state.sent();
|
146
|
+
_state.label = 3;
|
147
|
+
case 3:
|
148
|
+
return [
|
149
|
+
2
|
150
|
+
];
|
151
|
+
}
|
152
|
+
});
|
153
|
+
});
|
154
|
+
return function emptyDir(dir) {
|
155
|
+
return _ref.apply(this, arguments);
|
156
|
+
};
|
157
|
+
}();
|
158
|
+
export { emptyDir };
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import fs from "fs";
|
2
|
+
var findExists = function(files) {
|
3
|
+
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
4
|
+
try {
|
5
|
+
for(var _iterator = files[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
6
|
+
var file = _step.value;
|
7
|
+
if (fs.existsSync(file) && fs.statSync(file).isFile()) {
|
8
|
+
return file;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
} catch (err) {
|
12
|
+
_didIteratorError = true;
|
13
|
+
_iteratorError = err;
|
14
|
+
} finally{
|
15
|
+
try {
|
16
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
17
|
+
_iterator.return();
|
18
|
+
}
|
19
|
+
} finally{
|
20
|
+
if (_didIteratorError) {
|
21
|
+
throw _iteratorError;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
25
|
+
return false;
|
26
|
+
};
|
27
|
+
export { findExists };
|
@@ -0,0 +1,40 @@
|
|
1
|
+
var tagObjectToString = function(tagDefinition) {
|
2
|
+
var attributes = Object.keys(tagDefinition.attributes || {}).filter(function(attributeName) {
|
3
|
+
return tagDefinition.attributes[attributeName] !== false;
|
4
|
+
}).map(function(attributeName) {
|
5
|
+
if (tagDefinition.attributes[attributeName] === true) {
|
6
|
+
return attributeName;
|
7
|
+
}
|
8
|
+
return "".concat(attributeName, '="').concat(tagDefinition.attributes[attributeName], '"');
|
9
|
+
});
|
10
|
+
return "<".concat([
|
11
|
+
tagDefinition.tagName
|
12
|
+
].concat(attributes).join(" "), ">").concat(tagDefinition.innerHTML || "").concat(tagDefinition.voidTag ? "" : "</".concat(tagDefinition.tagName, ">"));
|
13
|
+
};
|
14
|
+
var generateMetaTags = function(metaOptions) {
|
15
|
+
if (!metaOptions) {
|
16
|
+
return "";
|
17
|
+
}
|
18
|
+
var metaTagAttributeObjects = Object.keys(metaOptions).map(function(metaName) {
|
19
|
+
var metaTagContent = metaOptions[metaName];
|
20
|
+
return typeof metaTagContent === "string" ? {
|
21
|
+
name: metaName,
|
22
|
+
content: metaTagContent
|
23
|
+
} : metaTagContent;
|
24
|
+
}).filter(function(attribute) {
|
25
|
+
return attribute !== false;
|
26
|
+
});
|
27
|
+
return metaTagAttributeObjects.map(function(metaTagAttributes) {
|
28
|
+
if (metaTagAttributes === false) {
|
29
|
+
throw new Error("Invalid meta tag");
|
30
|
+
}
|
31
|
+
return {
|
32
|
+
tagName: "meta",
|
33
|
+
voidTag: true,
|
34
|
+
attributes: metaTagAttributes
|
35
|
+
};
|
36
|
+
}).reduce(function(memo, tagObject) {
|
37
|
+
return "".concat(memo, "\n").concat(tagObjectToString(tagObject));
|
38
|
+
}, "");
|
39
|
+
};
|
40
|
+
export { generateMetaTags };
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { browserslist } from "./compiled";
|
2
|
+
var defaults = [
|
3
|
+
"> 0.01%",
|
4
|
+
"not dead",
|
5
|
+
"not op_mini all"
|
6
|
+
];
|
7
|
+
var getBrowserslist = function(appDirectory) {
|
8
|
+
return browserslist.loadConfig({
|
9
|
+
path: appDirectory
|
10
|
+
}) || defaults;
|
11
|
+
};
|
12
|
+
export { defaults, getBrowserslist };
|
@@ -0,0 +1,57 @@
|
|
1
|
+
function _arrayLikeToArray(arr, len) {
|
2
|
+
if (len == null || len > arr.length) len = arr.length;
|
3
|
+
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
4
|
+
return arr2;
|
5
|
+
}
|
6
|
+
function _arrayWithHoles(arr) {
|
7
|
+
if (Array.isArray(arr)) return arr;
|
8
|
+
}
|
9
|
+
function _iterableToArrayLimit(arr, i) {
|
10
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
11
|
+
if (_i == null) return;
|
12
|
+
var _arr = [];
|
13
|
+
var _n = true;
|
14
|
+
var _d = false;
|
15
|
+
var _s, _e;
|
16
|
+
try {
|
17
|
+
for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
|
18
|
+
_arr.push(_s.value);
|
19
|
+
if (i && _arr.length === i) break;
|
20
|
+
}
|
21
|
+
} catch (err) {
|
22
|
+
_d = true;
|
23
|
+
_e = err;
|
24
|
+
} finally{
|
25
|
+
try {
|
26
|
+
if (!_n && _i["return"] != null) _i["return"]();
|
27
|
+
} finally{
|
28
|
+
if (_d) throw _e;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
return _arr;
|
32
|
+
}
|
33
|
+
function _nonIterableRest() {
|
34
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
35
|
+
}
|
36
|
+
function _slicedToArray(arr, i) {
|
37
|
+
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
|
38
|
+
}
|
39
|
+
function _unsupportedIterableToArray(o, minLen) {
|
40
|
+
if (!o) return;
|
41
|
+
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
42
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
43
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
44
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
45
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
46
|
+
}
|
47
|
+
import * as fs from "../compiled/fs-extra";
|
48
|
+
var getCoreJsVersion = function(corejsPkgPath) {
|
49
|
+
try {
|
50
|
+
var version = fs.readJSONSync(corejsPkgPath).version;
|
51
|
+
var _version_split = _slicedToArray(version.split("."), 2), major = _version_split[0], minor = _version_split[1];
|
52
|
+
return "".concat(major, ".").concat(minor);
|
53
|
+
} catch (err) {
|
54
|
+
return "3";
|
55
|
+
}
|
56
|
+
};
|
57
|
+
export { getCoreJsVersion };
|
@@ -0,0 +1,45 @@
|
|
1
|
+
function _defineProperty(obj, key, value) {
|
2
|
+
if (key in obj) {
|
3
|
+
Object.defineProperty(obj, key, {
|
4
|
+
value: value,
|
5
|
+
enumerable: true,
|
6
|
+
configurable: true,
|
7
|
+
writable: true
|
8
|
+
});
|
9
|
+
} else {
|
10
|
+
obj[key] = value;
|
11
|
+
}
|
12
|
+
return obj;
|
13
|
+
}
|
14
|
+
function _objectSpread(target) {
|
15
|
+
for(var i = 1; i < arguments.length; i++){
|
16
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
17
|
+
var ownKeys = Object.keys(source);
|
18
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
19
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
20
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
ownKeys.forEach(function(key) {
|
24
|
+
_defineProperty(target, key, source[key]);
|
25
|
+
});
|
26
|
+
}
|
27
|
+
return target;
|
28
|
+
}
|
29
|
+
import { isPlainObject } from "./is";
|
30
|
+
import { MAIN_ENTRY_NAME } from "./constants";
|
31
|
+
var getEntryOptions = function(name, baseOptions, optionsByEntries, packageName) {
|
32
|
+
if (optionsByEntries) {
|
33
|
+
var optionsByEntry = getOptionsByEntryName(name, optionsByEntries);
|
34
|
+
if (optionsByEntry === void 0 && name === MAIN_ENTRY_NAME && packageName) {
|
35
|
+
optionsByEntry = getOptionsByEntryName(packageName, optionsByEntries);
|
36
|
+
}
|
37
|
+
return optionsByEntry !== void 0 ? isPlainObject(optionsByEntry) && isPlainObject(baseOptions) ? _objectSpread({}, baseOptions, optionsByEntry) : optionsByEntry : baseOptions;
|
38
|
+
} else {
|
39
|
+
return baseOptions;
|
40
|
+
}
|
41
|
+
};
|
42
|
+
var getOptionsByEntryName = function(name, optionsByEntries) {
|
43
|
+
return optionsByEntries.hasOwnProperty(name) ? optionsByEntries[name] : void 0;
|
44
|
+
};
|
45
|
+
export { getEntryOptions };
|