@modern-js/repo-generator 0.0.0-next-20221216063311 → 0.0.0-next-20221216140552
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/dist/index.js +9 -18
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -134249,7 +134249,7 @@ var require_constants6 = __commonJS({
|
|
|
134249
134249
|
"../../../toolkit/utils/dist/constants.js"(exports) {
|
|
134250
134250
|
"use strict";
|
|
134251
134251
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
134252
|
-
exports.PLUGIN_SCHEMAS = exports.INTERNAL_SERVER_PLUGINS = exports.
|
|
134252
|
+
exports.PLUGIN_SCHEMAS = exports.INTERNAL_SERVER_PLUGINS = exports.INTERNAL_CLI_PLUGINS = exports.INTERNAL_DOC_TOOLS_PLUGINS = exports.INTERNAL_MONOREPO_TOOLS_PLUGINS = exports.INTERNAL_MODULE_TOOLS_PLUGINS = exports.INTERNAL_APP_TOOLS_PLUGINS = exports.LOADER_ROUTES_DIR = exports.ROUTE_MANIFEST = exports.ROUTE_MINIFEST_FILE = exports.DEFAULT_SERVER_CONFIG = exports.OUTPUT_CONFIG_FILE = exports.CONFIG_FILE_EXTENSIONS = exports.CONFIG_CACHE_DIR = exports.SHARED_DIR = exports.SERVER_DIR = exports.API_DIR = exports.LOADABLE_STATS_FILE = exports.SERVER_RENDER_FUNCTION_NAME = exports.ENTRY_NAME_PATTERN = exports.SERVER_BUNDLE_DIRECTORY = exports.LAUNCH_EDITOR_ENDPOINT = exports.MAIN_ENTRY_NAME = exports.ROUTE_SPEC_FILE = exports.HMR_SOCK_PATH = void 0;
|
|
134253
134253
|
exports.HMR_SOCK_PATH = "/webpack-hmr";
|
|
134254
134254
|
exports.ROUTE_SPEC_FILE = "route.json";
|
|
134255
134255
|
exports.MAIN_ENTRY_NAME = "main";
|
|
@@ -134270,6 +134270,7 @@ var require_constants6 = __commonJS({
|
|
|
134270
134270
|
exports.LOADER_ROUTES_DIR = `loader-routes`;
|
|
134271
134271
|
exports.INTERNAL_APP_TOOLS_PLUGINS = {
|
|
134272
134272
|
"@modern-js/app-tools": "@modern-js/app-tools/cli",
|
|
134273
|
+
"@modern-js/runtime": "@modern-js/runtime/cli",
|
|
134273
134274
|
"@modern-js/plugin-proxy": "@modern-js/plugin-proxy/cli",
|
|
134274
134275
|
"@modern-js/plugin-ssg": "@modern-js/plugin-ssg/cli",
|
|
134275
134276
|
"@modern-js/plugin-bff": "@modern-js/plugin-bff/cli",
|
|
@@ -134285,9 +134286,6 @@ var require_constants6 = __commonJS({
|
|
|
134285
134286
|
"@modern-js/plugin-polyfill": "@modern-js/plugin-polyfill/cli",
|
|
134286
134287
|
"@modern-js/plugin-router-legacy": "@modern-js/plugin-router-legacy/cli"
|
|
134287
134288
|
};
|
|
134288
|
-
exports.INTERNAL_APP_TOOLS_RUNTIME_PLUGINS = {
|
|
134289
|
-
"@modern-js/runtime": "@modern-js/runtime/cli"
|
|
134290
|
-
};
|
|
134291
134289
|
exports.INTERNAL_MODULE_TOOLS_PLUGINS = {
|
|
134292
134290
|
"@modern-js/module-tools": "@modern-js/module-tools",
|
|
134293
134291
|
"@modern-js/doc-tools": "@modern-js/doc-tools",
|
|
@@ -134329,21 +134327,14 @@ var require_constants6 = __commonJS({
|
|
|
134329
134327
|
"@modern-js/plugin-nocode": "@modern-js/plugin-nocode/cli",
|
|
134330
134328
|
"@modern-js/plugin-router-legacy": "@modern-js/plugin-router-legacy/cli"
|
|
134331
134329
|
};
|
|
134332
|
-
exports.SERVER_PLUGIN_BFF = "@modern-js/plugin-bff";
|
|
134333
|
-
exports.SERVER_PLUGIN_EXPRESS = "@modern-js/plugin-express";
|
|
134334
|
-
exports.SERVER_PLUGIN_EGG = "@modern-js/plugin-egg";
|
|
134335
|
-
exports.SERVER_PLUGIN_KOA = "@modern-js/plugin-koa";
|
|
134336
|
-
exports.SERVER_PLUGIN_NEST = "@modern-js/plugin-nest";
|
|
134337
|
-
exports.SERVER_PLUGIN_SERVER = "@modern-js/plugin-server";
|
|
134338
|
-
exports.SERVER_PLUGIN_POLYFILL = "@modern-js/plugin-polyfill";
|
|
134339
134330
|
exports.INTERNAL_SERVER_PLUGINS = {
|
|
134340
|
-
|
|
134341
|
-
|
|
134342
|
-
|
|
134343
|
-
|
|
134344
|
-
|
|
134345
|
-
|
|
134346
|
-
|
|
134331
|
+
"@modern-js/plugin-bff": "@modern-js/plugin-bff/server",
|
|
134332
|
+
"@modern-js/plugin-express": "@modern-js/plugin-express",
|
|
134333
|
+
"@modern-js/plugin-egg": "@modern-js/plugin-egg",
|
|
134334
|
+
"@modern-js/plugin-koa": "@modern-js/plugin-koa",
|
|
134335
|
+
"@modern-js/plugin-nest": "@modern-js/plugin-nest/server",
|
|
134336
|
+
"@modern-js/plugin-server": "@modern-js/plugin-server/server",
|
|
134337
|
+
"@modern-js/plugin-polyfill": "@modern-js/plugin-polyfill"
|
|
134347
134338
|
};
|
|
134348
134339
|
exports.PLUGIN_SCHEMAS = {
|
|
134349
134340
|
"@modern-js/runtime": [
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "0.0.0-next-
|
|
14
|
+
"version": "0.0.0-next-20221216140552",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"files": [
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"@types/node": "^14",
|
|
27
27
|
"jest": "^27",
|
|
28
28
|
"typescript": "^4",
|
|
29
|
-
"@modern-js/base-generator": "0.0.0-next-
|
|
30
|
-
"@modern-js/generator-common": "0.0.0-next-
|
|
31
|
-
"@modern-js/generator-plugin": "0.0.0-next-
|
|
32
|
-
"@modern-js/generator-utils": "0.0.0-next-
|
|
33
|
-
"@modern-js/module-generator": "0.0.0-next-
|
|
34
|
-
"@modern-js/monorepo-generator": "0.0.0-next-
|
|
35
|
-
"@modern-js/
|
|
36
|
-
"@modern-js/
|
|
37
|
-
"@scripts/
|
|
38
|
-
"@scripts/
|
|
29
|
+
"@modern-js/base-generator": "0.0.0-next-20221216140552",
|
|
30
|
+
"@modern-js/generator-common": "0.0.0-next-20221216140552",
|
|
31
|
+
"@modern-js/generator-plugin": "0.0.0-next-20221216140552",
|
|
32
|
+
"@modern-js/generator-utils": "0.0.0-next-20221216140552",
|
|
33
|
+
"@modern-js/module-generator": "0.0.0-next-20221216140552",
|
|
34
|
+
"@modern-js/monorepo-generator": "0.0.0-next-20221216140552",
|
|
35
|
+
"@modern-js/mwa-generator": "0.0.0-next-20221216140552",
|
|
36
|
+
"@modern-js/utils": "0.0.0-next-20221216140552",
|
|
37
|
+
"@scripts/jest-config": "0.0.0-next-20221216140552",
|
|
38
|
+
"@scripts/build": "0.0.0-next-20221216140552"
|
|
39
39
|
},
|
|
40
40
|
"sideEffects": false,
|
|
41
41
|
"publishConfig": {
|