@modern-js/app-tools 2.32.2-alpha.1 → 2.33.1

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.
@@ -106,20 +106,22 @@ const HTML_PARTIALS_EXTENSIONS = [
106
106
  const FILE_SYSTEM_ROUTES_COMPONENTS_DIR = "internal_components";
107
107
  const NESTED_ROUTE = {
108
108
  LAYOUT_FILE: "layout",
109
+ LAYOUT_CONFIG_FILE: "layout.config",
109
110
  LAYOUT_LOADER_FILE: "layout.loader",
110
111
  LAYOUT_DATA_FILE: "layout.data",
111
112
  LAYOUT_CLIENT_LOADER: "layout.data.client",
112
113
  PAGE_FILE: "page",
114
+ PAGE_CONFIG_FILE: "page.config",
113
115
  PAGE_LOADER_FILE: "page.loader",
114
- PAGE_DATA_FILE: "layout.data",
116
+ PAGE_DATA_FILE: "page.data",
115
117
  PAGE_CLIENT_LOADER: "page.data.client",
116
- LOADING_FILE: "loading",
117
- ERROR_FILE: "error",
118
- LOADER_FILE: "loader",
119
118
  SPLATE_FILE: "$",
120
119
  SPLATE_LOADER_FILE: "$.loader",
121
- LAYOUT_CONFIG_FILE: "layout.config",
122
- PAGE_CONFIG_FILE: "page.config"
120
+ SPLATE_DATA_FILE: "$.data",
121
+ SPLATE_CLIENT_DATA: "$.data.client",
122
+ LOADING_FILE: "loading",
123
+ ERROR_FILE: "error",
124
+ LOADER_FILE: "loader"
123
125
  };
124
126
  const APP_CONFIG_NAME = "config";
125
127
  const APP_INIT_EXPORTED = "init";
@@ -120,6 +120,8 @@ const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldVersion)
120
120
  let pageLoaderFile = "";
121
121
  let pageRoute = null;
122
122
  let splatLoaderFile = "";
123
+ let splatClientData = "";
124
+ let splatData = "";
123
125
  let splatRoute = null;
124
126
  let pageConfigFile = "";
125
127
  const items = await _utils.fs.readdir(dirname);
@@ -185,6 +187,12 @@ const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldVersion)
185
187
  if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_LOADER_FILE) {
186
188
  splatLoaderFile = itemPath;
187
189
  }
190
+ if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_CLIENT_DATA) {
191
+ splatClientData = itemPath;
192
+ }
193
+ if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_DATA_FILE) {
194
+ splatData = itemPath;
195
+ }
188
196
  if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_FILE) {
189
197
  var _route_children2;
190
198
  splatRoute = createRoute({
@@ -194,6 +202,12 @@ const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldVersion)
194
202
  if (splatLoaderFile) {
195
203
  splatRoute.loader = splatLoaderFile;
196
204
  }
205
+ if (splatClientData) {
206
+ splatRoute.clientData = splatClientData;
207
+ }
208
+ if (splatData) {
209
+ splatRoute.data = splatData;
210
+ }
197
211
  (_route_children2 = route.children) === null || _route_children2 === void 0 ? void 0 : _route_children2.push(splatRoute);
198
212
  }
199
213
  if (itemWithoutExt === _constants.NESTED_ROUTE.LOADING_FILE) {
package/dist/cjs/index.js CHANGED
@@ -156,7 +156,7 @@ const appTools = (options = {
156
156
  await deploy(api, options2);
157
157
  process.exit(0);
158
158
  });
159
- program.command("new").usage("[options]").description(_locale.i18n.t(_locale.localeKeys.command.new.describe)).option("--config-file <configFile>", _locale.i18n.t(_locale.localeKeys.command.shared.config)).option("--lang <lang>", _locale.i18n.t(_locale.localeKeys.command.new.lang)).option("-c, --config <config>", _locale.i18n.t(_locale.localeKeys.command.new.config)).option("-d, --debug", _locale.i18n.t(_locale.localeKeys.command.new.debug), false).option("--dist-tag <tag>", _locale.i18n.t(_locale.localeKeys.command.new.distTag)).option("--registry", _locale.i18n.t(_locale.localeKeys.command.new.registry)).action(async (options2) => {
159
+ program.command("new").usage("[options]").description(_locale.i18n.t(_locale.localeKeys.command.new.describe)).option("--config-file <configFile>", _locale.i18n.t(_locale.localeKeys.command.shared.config)).option("--lang <lang>", _locale.i18n.t(_locale.localeKeys.command.new.lang)).option("-c, --config <config>", _locale.i18n.t(_locale.localeKeys.command.new.config)).option("-d, --debug", _locale.i18n.t(_locale.localeKeys.command.new.debug), false).option("--dist-tag <tag>", _locale.i18n.t(_locale.localeKeys.command.new.distTag)).option("--registry", _locale.i18n.t(_locale.localeKeys.command.new.registry)).option("--no-need-install", _locale.i18n.t(_locale.localeKeys.command.shared.noNeedInstall)).action(async (options2) => {
160
160
  const { MWANewAction } = await Promise.resolve().then(() => /* @__PURE__ */ _interop_require_wildcard._(require("@modern-js/new-action")));
161
161
  await MWANewAction({
162
162
  ...options2,
@@ -168,7 +168,7 @@ const appTools = (options = {
168
168
  inspect(api, options2);
169
169
  });
170
170
  const { defineCommand } = await Promise.resolve().then(() => /* @__PURE__ */ _interop_require_wildcard._(require("@modern-js/upgrade")));
171
- defineCommand(program.command("upgrade").option("-c --config <config>", _locale.i18n.t(_locale.localeKeys.command.shared.config)));
171
+ defineCommand(program.command("upgrade").option("-c --config <config>", _locale.i18n.t(_locale.localeKeys.command.shared.config)).option("--no-need-install", _locale.i18n.t(_locale.localeKeys.command.shared.noNeedInstall)));
172
172
  },
173
173
  async prepare() {
174
174
  const command = (0, _utils.getCommand)();
@@ -13,7 +13,8 @@ const EN_LOCALE = {
13
13
  shared: {
14
14
  analyze: "analyze bundle size",
15
15
  config: "specify the configuration file, which can be a relative or absolute path",
16
- skipBuild: "skip the build phase"
16
+ skipBuild: "skip the build phase",
17
+ noNeedInstall: "not run install command"
17
18
  },
18
19
  dev: {
19
20
  describe: "starting the dev server",
@@ -13,7 +13,8 @@ const ZH_LOCALE = {
13
13
  shared: {
14
14
  analyze: "分析构建产物体积,查看各个模块打包后的大小",
15
15
  config: "指定配置文件路径,可以为相对路径或绝对路径",
16
- skipBuild: "跳过构建阶段"
16
+ skipBuild: "跳过构建阶段",
17
+ noNeedInstall: "无需安装依赖"
17
18
  },
18
19
  dev: {
19
20
  describe: "启动开发服务器",
@@ -27,20 +27,22 @@ export var HTML_PARTIALS_EXTENSIONS = [
27
27
  export var FILE_SYSTEM_ROUTES_COMPONENTS_DIR = "internal_components";
28
28
  export var NESTED_ROUTE = {
29
29
  LAYOUT_FILE: "layout",
30
+ LAYOUT_CONFIG_FILE: "layout.config",
30
31
  LAYOUT_LOADER_FILE: "layout.loader",
31
32
  LAYOUT_DATA_FILE: "layout.data",
32
33
  LAYOUT_CLIENT_LOADER: "layout.data.client",
33
34
  PAGE_FILE: "page",
35
+ PAGE_CONFIG_FILE: "page.config",
34
36
  PAGE_LOADER_FILE: "page.loader",
35
- PAGE_DATA_FILE: "layout.data",
37
+ PAGE_DATA_FILE: "page.data",
36
38
  PAGE_CLIENT_LOADER: "page.data.client",
37
- LOADING_FILE: "loading",
38
- ERROR_FILE: "error",
39
- LOADER_FILE: "loader",
40
39
  SPLATE_FILE: "$",
41
40
  SPLATE_LOADER_FILE: "$.loader",
42
- LAYOUT_CONFIG_FILE: "layout.config",
43
- PAGE_CONFIG_FILE: "page.config"
41
+ SPLATE_DATA_FILE: "$.data",
42
+ SPLATE_CLIENT_DATA: "$.data.client",
43
+ LOADING_FILE: "loading",
44
+ ERROR_FILE: "error",
45
+ LOADER_FILE: "loader"
44
46
  };
45
47
  export var APP_CONFIG_NAME = "config";
46
48
  export var APP_INIT_EXPORTED = "init";
@@ -73,7 +73,7 @@ export var optimizeRoute = function(routeTree) {
73
73
  };
74
74
  export var walk = function() {
75
75
  var _ref = _async_to_generator(function(dirname, rootDir, alias, entryName, isMainEntry, oldVersion) {
76
- var _routePath, _finalRoute_children, isDirectory, relativeDir, pathSegments, lastSegment, isRoot, isPathlessLayout, isWithoutLayoutPath, routePath, route, pageLoaderFile, pageRoute, splatLoaderFile, splatRoute, pageConfigFile, items, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, item, itemPath, extname, itemWithoutExt, isDirectory1, childRoute, _route_children, _route_children1, _route_children2, err, finalRoute, childRoutes, childRoute1, _$path, optimizedRoutes;
76
+ var _routePath, _finalRoute_children, isDirectory, relativeDir, pathSegments, lastSegment, isRoot, isPathlessLayout, isWithoutLayoutPath, routePath, route, pageLoaderFile, pageRoute, splatLoaderFile, splatClientData, splatData, splatRoute, pageConfigFile, items, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, item, itemPath, extname, itemWithoutExt, isDirectory1, childRoute, _route_children, _route_children1, _route_children2, err, finalRoute, childRoutes, childRoute1, _$path, optimizedRoutes;
77
77
  return _ts_generator(this, function(_state) {
78
78
  switch (_state.label) {
79
79
  case 0:
@@ -119,6 +119,8 @@ export var walk = function() {
119
119
  pageLoaderFile = "";
120
120
  pageRoute = null;
121
121
  splatLoaderFile = "";
122
+ splatClientData = "";
123
+ splatData = "";
122
124
  splatRoute = null;
123
125
  pageConfigFile = "";
124
126
  return [
@@ -224,6 +226,12 @@ export var walk = function() {
224
226
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_LOADER_FILE) {
225
227
  splatLoaderFile = itemPath;
226
228
  }
229
+ if (itemWithoutExt === NESTED_ROUTE.SPLATE_CLIENT_DATA) {
230
+ splatClientData = itemPath;
231
+ }
232
+ if (itemWithoutExt === NESTED_ROUTE.SPLATE_DATA_FILE) {
233
+ splatData = itemPath;
234
+ }
227
235
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_FILE) {
228
236
  ;
229
237
  splatRoute = createRoute({
@@ -233,6 +241,12 @@ export var walk = function() {
233
241
  if (splatLoaderFile) {
234
242
  splatRoute.loader = splatLoaderFile;
235
243
  }
244
+ if (splatClientData) {
245
+ splatRoute.clientData = splatClientData;
246
+ }
247
+ if (splatData) {
248
+ splatRoute.data = splatData;
249
+ }
236
250
  (_route_children2 = route.children) === null || _route_children2 === void 0 ? void 0 : _route_children2.push(splatRoute);
237
251
  }
238
252
  if (itemWithoutExt === NESTED_ROUTE.LOADING_FILE) {
package/dist/esm/index.js CHANGED
@@ -414,7 +414,7 @@ export var appTools = function() {
414
414
  return _ref.apply(this, arguments);
415
415
  };
416
416
  }());
417
- program.command("new").usage("[options]").description(i18n.t(localeKeys.command.new.describe)).option("--config-file <configFile>", i18n.t(localeKeys.command.shared.config)).option("--lang <lang>", i18n.t(localeKeys.command.new.lang)).option("-c, --config <config>", i18n.t(localeKeys.command.new.config)).option("-d, --debug", i18n.t(localeKeys.command.new.debug), false).option("--dist-tag <tag>", i18n.t(localeKeys.command.new.distTag)).option("--registry", i18n.t(localeKeys.command.new.registry)).action(function() {
417
+ program.command("new").usage("[options]").description(i18n.t(localeKeys.command.new.describe)).option("--config-file <configFile>", i18n.t(localeKeys.command.shared.config)).option("--lang <lang>", i18n.t(localeKeys.command.new.lang)).option("-c, --config <config>", i18n.t(localeKeys.command.new.config)).option("-d, --debug", i18n.t(localeKeys.command.new.debug), false).option("--dist-tag <tag>", i18n.t(localeKeys.command.new.distTag)).option("--registry", i18n.t(localeKeys.command.new.registry)).option("--no-need-install", i18n.t(localeKeys.command.shared.noNeedInstall)).action(function() {
418
418
  var _ref = _async_to_generator(function(options2) {
419
419
  var MWANewAction;
420
420
  return _ts_generator(this, function(_state2) {
@@ -473,7 +473,7 @@ export var appTools = function() {
473
473
  ];
474
474
  case 3:
475
475
  defineCommand = _state.sent().defineCommand;
476
- defineCommand(program.command("upgrade").option("-c --config <config>", i18n.t(localeKeys.command.shared.config)));
476
+ defineCommand(program.command("upgrade").option("-c --config <config>", i18n.t(localeKeys.command.shared.config)).option("--no-need-install", i18n.t(localeKeys.command.shared.noNeedInstall)));
477
477
  return [
478
478
  2
479
479
  ];
@@ -3,7 +3,8 @@ export var EN_LOCALE = {
3
3
  shared: {
4
4
  analyze: "analyze bundle size",
5
5
  config: "specify the configuration file, which can be a relative or absolute path",
6
- skipBuild: "skip the build phase"
6
+ skipBuild: "skip the build phase",
7
+ noNeedInstall: "not run install command"
7
8
  },
8
9
  dev: {
9
10
  describe: "starting the dev server",
@@ -3,7 +3,8 @@ export var ZH_LOCALE = {
3
3
  shared: {
4
4
  analyze: "分析构建产物体积,查看各个模块打包后的大小",
5
5
  config: "指定配置文件路径,可以为相对路径或绝对路径",
6
- skipBuild: "跳过构建阶段"
6
+ skipBuild: "跳过构建阶段",
7
+ noNeedInstall: "无需安装依赖"
7
8
  },
8
9
  dev: {
9
10
  describe: "启动开发服务器",
@@ -27,20 +27,22 @@ export const HTML_PARTIALS_EXTENSIONS = [
27
27
  export const FILE_SYSTEM_ROUTES_COMPONENTS_DIR = "internal_components";
28
28
  export const NESTED_ROUTE = {
29
29
  LAYOUT_FILE: "layout",
30
+ LAYOUT_CONFIG_FILE: "layout.config",
30
31
  LAYOUT_LOADER_FILE: "layout.loader",
31
32
  LAYOUT_DATA_FILE: "layout.data",
32
33
  LAYOUT_CLIENT_LOADER: "layout.data.client",
33
34
  PAGE_FILE: "page",
35
+ PAGE_CONFIG_FILE: "page.config",
34
36
  PAGE_LOADER_FILE: "page.loader",
35
- PAGE_DATA_FILE: "layout.data",
37
+ PAGE_DATA_FILE: "page.data",
36
38
  PAGE_CLIENT_LOADER: "page.data.client",
37
- LOADING_FILE: "loading",
38
- ERROR_FILE: "error",
39
- LOADER_FILE: "loader",
40
39
  SPLATE_FILE: "$",
41
40
  SPLATE_LOADER_FILE: "$.loader",
42
- LAYOUT_CONFIG_FILE: "layout.config",
43
- PAGE_CONFIG_FILE: "page.config"
41
+ SPLATE_DATA_FILE: "$.data",
42
+ SPLATE_CLIENT_DATA: "$.data.client",
43
+ LOADING_FILE: "loading",
44
+ ERROR_FILE: "error",
45
+ LOADER_FILE: "loader"
44
46
  };
45
47
  export const APP_CONFIG_NAME = "config";
46
48
  export const APP_INIT_EXPORTED = "init";
@@ -97,6 +97,8 @@ export const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldV
97
97
  let pageLoaderFile = "";
98
98
  let pageRoute = null;
99
99
  let splatLoaderFile = "";
100
+ let splatClientData = "";
101
+ let splatData = "";
100
102
  let splatRoute = null;
101
103
  let pageConfigFile = "";
102
104
  const items = await fs.readdir(dirname);
@@ -162,6 +164,12 @@ export const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldV
162
164
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_LOADER_FILE) {
163
165
  splatLoaderFile = itemPath;
164
166
  }
167
+ if (itemWithoutExt === NESTED_ROUTE.SPLATE_CLIENT_DATA) {
168
+ splatClientData = itemPath;
169
+ }
170
+ if (itemWithoutExt === NESTED_ROUTE.SPLATE_DATA_FILE) {
171
+ splatData = itemPath;
172
+ }
165
173
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_FILE) {
166
174
  var _route_children2;
167
175
  splatRoute = createRoute({
@@ -171,6 +179,12 @@ export const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldV
171
179
  if (splatLoaderFile) {
172
180
  splatRoute.loader = splatLoaderFile;
173
181
  }
182
+ if (splatClientData) {
183
+ splatRoute.clientData = splatClientData;
184
+ }
185
+ if (splatData) {
186
+ splatRoute.data = splatData;
187
+ }
174
188
  (_route_children2 = route.children) === null || _route_children2 === void 0 ? void 0 : _route_children2.push(splatRoute);
175
189
  }
176
190
  if (itemWithoutExt === NESTED_ROUTE.LOADING_FILE) {
@@ -122,7 +122,7 @@ export const appTools = (options = {
122
122
  await deploy(api, options2);
123
123
  process.exit(0);
124
124
  });
125
- program.command("new").usage("[options]").description(i18n.t(localeKeys.command.new.describe)).option("--config-file <configFile>", i18n.t(localeKeys.command.shared.config)).option("--lang <lang>", i18n.t(localeKeys.command.new.lang)).option("-c, --config <config>", i18n.t(localeKeys.command.new.config)).option("-d, --debug", i18n.t(localeKeys.command.new.debug), false).option("--dist-tag <tag>", i18n.t(localeKeys.command.new.distTag)).option("--registry", i18n.t(localeKeys.command.new.registry)).action(async (options2) => {
125
+ program.command("new").usage("[options]").description(i18n.t(localeKeys.command.new.describe)).option("--config-file <configFile>", i18n.t(localeKeys.command.shared.config)).option("--lang <lang>", i18n.t(localeKeys.command.new.lang)).option("-c, --config <config>", i18n.t(localeKeys.command.new.config)).option("-d, --debug", i18n.t(localeKeys.command.new.debug), false).option("--dist-tag <tag>", i18n.t(localeKeys.command.new.distTag)).option("--registry", i18n.t(localeKeys.command.new.registry)).option("--no-need-install", i18n.t(localeKeys.command.shared.noNeedInstall)).action(async (options2) => {
126
126
  const { MWANewAction } = await import("@modern-js/new-action");
127
127
  await MWANewAction({
128
128
  ...options2,
@@ -134,7 +134,7 @@ export const appTools = (options = {
134
134
  inspect(api, options2);
135
135
  });
136
136
  const { defineCommand } = await import("@modern-js/upgrade");
137
- defineCommand(program.command("upgrade").option("-c --config <config>", i18n.t(localeKeys.command.shared.config)));
137
+ defineCommand(program.command("upgrade").option("-c --config <config>", i18n.t(localeKeys.command.shared.config)).option("--no-need-install", i18n.t(localeKeys.command.shared.noNeedInstall)));
138
138
  },
139
139
  async prepare() {
140
140
  const command = getCommand();
@@ -3,7 +3,8 @@ export const EN_LOCALE = {
3
3
  shared: {
4
4
  analyze: "analyze bundle size",
5
5
  config: "specify the configuration file, which can be a relative or absolute path",
6
- skipBuild: "skip the build phase"
6
+ skipBuild: "skip the build phase",
7
+ noNeedInstall: "not run install command"
7
8
  },
8
9
  dev: {
9
10
  describe: "starting the dev server",
@@ -3,7 +3,8 @@ export const ZH_LOCALE = {
3
3
  shared: {
4
4
  analyze: "分析构建产物体积,查看各个模块打包后的大小",
5
5
  config: "指定配置文件路径,可以为相对路径或绝对路径",
6
- skipBuild: "跳过构建阶段"
6
+ skipBuild: "跳过构建阶段",
7
+ noNeedInstall: "无需安装依赖"
7
8
  },
8
9
  dev: {
9
10
  describe: "启动开发服务器",
@@ -18,20 +18,22 @@ export declare const HTML_PARTIALS_EXTENSIONS: string[];
18
18
  export declare const FILE_SYSTEM_ROUTES_COMPONENTS_DIR = "internal_components";
19
19
  export declare const NESTED_ROUTE: {
20
20
  LAYOUT_FILE: string;
21
+ LAYOUT_CONFIG_FILE: string;
21
22
  LAYOUT_LOADER_FILE: string;
22
23
  LAYOUT_DATA_FILE: string;
23
24
  LAYOUT_CLIENT_LOADER: string;
24
25
  PAGE_FILE: string;
26
+ PAGE_CONFIG_FILE: string;
25
27
  PAGE_LOADER_FILE: string;
26
28
  PAGE_DATA_FILE: string;
27
29
  PAGE_CLIENT_LOADER: string;
30
+ SPLATE_FILE: string;
31
+ SPLATE_LOADER_FILE: string;
32
+ SPLATE_DATA_FILE: string;
33
+ SPLATE_CLIENT_DATA: string;
28
34
  LOADING_FILE: string;
29
35
  ERROR_FILE: string;
30
36
  LOADER_FILE: string;
31
- SPLATE_FILE: string;
32
- SPLATE_LOADER_FILE: string;
33
- LAYOUT_CONFIG_FILE: string;
34
- PAGE_CONFIG_FILE: string;
35
37
  };
36
38
  export declare const APP_CONFIG_NAME = "config";
37
39
  export declare const APP_INIT_EXPORTED = "init";
@@ -4,6 +4,7 @@ export declare const EN_LOCALE: {
4
4
  analyze: string;
5
5
  config: string;
6
6
  skipBuild: string;
7
+ noNeedInstall: string;
7
8
  };
8
9
  dev: {
9
10
  describe: string;
@@ -6,6 +6,7 @@ declare const localeKeys: {
6
6
  analyze: string;
7
7
  config: string;
8
8
  skipBuild: string;
9
+ noNeedInstall: string;
9
10
  };
10
11
  dev: {
11
12
  describe: string;
@@ -44,6 +45,7 @@ declare const localeKeys: {
44
45
  analyze: string;
45
46
  config: string;
46
47
  skipBuild: string;
48
+ noNeedInstall: string;
47
49
  };
48
50
  dev: {
49
51
  describe: string;
@@ -4,6 +4,7 @@ export declare const ZH_LOCALE: {
4
4
  analyze: string;
5
5
  config: string;
6
6
  skipBuild: string;
7
+ noNeedInstall: string;
7
8
  };
8
9
  dev: {
9
10
  describe: string;
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.32.2-alpha.1",
18
+ "version": "2.33.1",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "types": "./dist/types/index.d.ts",
21
21
  "main": "./dist/cjs/index.js",
@@ -73,24 +73,24 @@
73
73
  "esbuild": "0.17.19",
74
74
  "rspack-plugin-virtual-module": "0.1.7",
75
75
  "@swc/helpers": "0.5.1",
76
- "@modern-js/builder": "2.32.2-alpha.1",
77
- "@modern-js/builder-plugin-esbuild": "2.32.2-alpha.1",
78
- "@modern-js/builder-shared": "2.32.2-alpha.1",
79
- "@modern-js/builder-webpack-provider": "2.32.2-alpha.1",
80
- "@modern-js/core": "2.32.2-alpha.1",
81
- "@modern-js/new-action": "2.32.2-alpha.1",
82
- "@modern-js/node-bundle-require": "2.32.2-alpha.1",
83
- "@modern-js/plugin": "2.32.2-alpha.1",
84
- "@modern-js/plugin-data-loader": "2.32.2-alpha.1",
85
- "@modern-js/plugin-i18n": "2.32.2-alpha.1",
86
- "@modern-js/plugin-lint": "2.32.2-alpha.1",
87
- "@modern-js/builder-plugin-node-polyfill": "2.32.2-alpha.1",
88
- "@modern-js/prod-server": "2.32.2-alpha.1",
89
- "@modern-js/server": "2.32.2-alpha.1",
90
- "@modern-js/types": "2.32.2-alpha.1",
91
- "@modern-js/upgrade": "2.32.2-alpha.1",
92
- "@modern-js/utils": "2.32.2-alpha.1",
93
- "@modern-js/server-core": "2.32.2-alpha.1"
76
+ "@modern-js/builder": "2.33.1",
77
+ "@modern-js/builder-plugin-esbuild": "2.33.1",
78
+ "@modern-js/builder-plugin-node-polyfill": "2.33.1",
79
+ "@modern-js/builder-shared": "2.33.1",
80
+ "@modern-js/builder-webpack-provider": "2.33.1",
81
+ "@modern-js/core": "2.33.1",
82
+ "@modern-js/new-action": "2.33.1",
83
+ "@modern-js/node-bundle-require": "2.33.1",
84
+ "@modern-js/plugin": "2.33.1",
85
+ "@modern-js/plugin-data-loader": "2.33.1",
86
+ "@modern-js/plugin-i18n": "2.33.1",
87
+ "@modern-js/plugin-lint": "2.33.1",
88
+ "@modern-js/prod-server": "2.33.1",
89
+ "@modern-js/server": "2.33.1",
90
+ "@modern-js/types": "2.33.1",
91
+ "@modern-js/upgrade": "2.33.1",
92
+ "@modern-js/server-core": "2.33.1",
93
+ "@modern-js/utils": "2.33.1"
94
94
  },
95
95
  "devDependencies": {
96
96
  "@types/babel__traverse": "^7.14.2",
@@ -99,13 +99,13 @@
99
99
  "jest": "^29",
100
100
  "typescript": "^5",
101
101
  "webpack": "^5.88.1",
102
- "@modern-js/builder-plugin-swc": "2.32.2-alpha.1",
103
- "@modern-js/builder-rspack-provider": "2.32.2-alpha.1",
104
- "@scripts/build": "2.32.1",
105
- "@scripts/jest-config": "2.32.1"
102
+ "@modern-js/builder-plugin-swc": "2.33.1",
103
+ "@modern-js/builder-rspack-provider": "2.33.1",
104
+ "@scripts/jest-config": "2.33.1",
105
+ "@scripts/build": "2.33.1"
106
106
  },
107
107
  "peerDependencies": {
108
- "@modern-js/builder-rspack-provider": "^2.32.2-alpha.1"
108
+ "@modern-js/builder-rspack-provider": "^2.33.1"
109
109
  },
110
110
  "peerDependenciesMeta": {
111
111
  "@modern-js/builder-rspack-provider": {