@modern-js/app-tools 2.34.1-alpha.0 → 2.35.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.
@@ -116,7 +116,6 @@ const NESTED_ROUTE = {
116
116
  PAGE_DATA_FILE: "page.data",
117
117
  PAGE_CLIENT_LOADER: "page.data.client",
118
118
  SPLATE_FILE: "$",
119
- SPLATE_CONFIG_FILE: "$.config",
120
119
  SPLATE_LOADER_FILE: "$.loader",
121
120
  SPLATE_DATA_FILE: "$.data",
122
121
  SPLATE_CLIENT_DATA: "$.data.client",
@@ -190,11 +190,6 @@ const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldVersion)
190
190
  if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_CLIENT_DATA) {
191
191
  splatClientData = itemPath;
192
192
  }
193
- if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_CONFIG_FILE) {
194
- if (!route.config) {
195
- route.config = itemPath;
196
- }
197
- }
198
193
  if (itemWithoutExt === _constants.NESTED_ROUTE.SPLATE_DATA_FILE) {
199
194
  splatData = itemPath;
200
195
  }
@@ -37,7 +37,6 @@ export var NESTED_ROUTE = {
37
37
  PAGE_DATA_FILE: "page.data",
38
38
  PAGE_CLIENT_LOADER: "page.data.client",
39
39
  SPLATE_FILE: "$",
40
- SPLATE_CONFIG_FILE: "$.config",
41
40
  SPLATE_LOADER_FILE: "$.loader",
42
41
  SPLATE_DATA_FILE: "$.data",
43
42
  SPLATE_CLIENT_DATA: "$.data.client",
@@ -229,11 +229,6 @@ export var walk = function() {
229
229
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_CLIENT_DATA) {
230
230
  splatClientData = itemPath;
231
231
  }
232
- if (itemWithoutExt === NESTED_ROUTE.SPLATE_CONFIG_FILE) {
233
- if (!route.config) {
234
- route.config = itemPath;
235
- }
236
- }
237
232
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_DATA_FILE) {
238
233
  splatData = itemPath;
239
234
  }
@@ -37,7 +37,6 @@ export const NESTED_ROUTE = {
37
37
  PAGE_DATA_FILE: "page.data",
38
38
  PAGE_CLIENT_LOADER: "page.data.client",
39
39
  SPLATE_FILE: "$",
40
- SPLATE_CONFIG_FILE: "$.config",
41
40
  SPLATE_LOADER_FILE: "$.loader",
42
41
  SPLATE_DATA_FILE: "$.data",
43
42
  SPLATE_CLIENT_DATA: "$.data.client",
@@ -167,11 +167,6 @@ export const walk = async (dirname, rootDir, alias, entryName, isMainEntry, oldV
167
167
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_CLIENT_DATA) {
168
168
  splatClientData = itemPath;
169
169
  }
170
- if (itemWithoutExt === NESTED_ROUTE.SPLATE_CONFIG_FILE) {
171
- if (!route.config) {
172
- route.config = itemPath;
173
- }
174
- }
175
170
  if (itemWithoutExt === NESTED_ROUTE.SPLATE_DATA_FILE) {
176
171
  splatData = itemPath;
177
172
  }
@@ -28,7 +28,6 @@ export declare const NESTED_ROUTE: {
28
28
  PAGE_DATA_FILE: string;
29
29
  PAGE_CLIENT_LOADER: string;
30
30
  SPLATE_FILE: string;
31
- SPLATE_CONFIG_FILE: string;
32
31
  SPLATE_LOADER_FILE: string;
33
32
  SPLATE_DATA_FILE: string;
34
33
  SPLATE_CLIENT_DATA: string;
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.34.1-alpha.0",
18
+ "version": "2.35.0",
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.34.0",
77
- "@modern-js/builder-shared": "2.34.0",
78
- "@modern-js/builder-plugin-node-polyfill": "2.34.0",
79
- "@modern-js/core": "2.34.0",
80
- "@modern-js/new-action": "2.34.0",
81
- "@modern-js/node-bundle-require": "2.34.0",
82
- "@modern-js/builder-webpack-provider": "2.34.0",
83
- "@modern-js/plugin": "2.34.0",
84
- "@modern-js/builder-plugin-esbuild": "2.34.0",
85
- "@modern-js/plugin-data-loader": "2.34.0",
86
- "@modern-js/server": "2.34.0",
87
- "@modern-js/prod-server": "2.34.0",
88
- "@modern-js/plugin-lint": "2.34.0",
89
- "@modern-js/plugin-i18n": "2.34.0",
90
- "@modern-js/upgrade": "2.34.0",
91
- "@modern-js/types": "2.34.0",
92
- "@modern-js/server-core": "2.34.0",
93
- "@modern-js/utils": "2.34.0"
76
+ "@modern-js/builder": "2.35.0",
77
+ "@modern-js/builder-plugin-esbuild": "2.35.0",
78
+ "@modern-js/builder-plugin-node-polyfill": "2.35.0",
79
+ "@modern-js/builder-shared": "2.35.0",
80
+ "@modern-js/builder-webpack-provider": "2.35.0",
81
+ "@modern-js/core": "2.35.0",
82
+ "@modern-js/new-action": "2.35.0",
83
+ "@modern-js/node-bundle-require": "2.35.0",
84
+ "@modern-js/plugin": "2.35.0",
85
+ "@modern-js/plugin-data-loader": "2.35.0",
86
+ "@modern-js/plugin-i18n": "2.35.0",
87
+ "@modern-js/plugin-lint": "2.35.0",
88
+ "@modern-js/prod-server": "2.35.0",
89
+ "@modern-js/server": "2.35.0",
90
+ "@modern-js/types": "2.35.0",
91
+ "@modern-js/upgrade": "2.35.0",
92
+ "@modern-js/utils": "2.35.0",
93
+ "@modern-js/server-core": "2.35.0"
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-rspack-provider": "2.34.0",
103
- "@scripts/build": "2.34.0",
104
- "@modern-js/builder-plugin-swc": "2.34.0",
105
- "@scripts/jest-config": "2.34.0"
102
+ "@modern-js/builder-plugin-swc": "2.35.0",
103
+ "@modern-js/builder-rspack-provider": "2.35.0",
104
+ "@scripts/build": "2.35.0",
105
+ "@scripts/jest-config": "2.35.0"
106
106
  },
107
107
  "peerDependencies": {
108
- "@modern-js/builder-rspack-provider": "^2.34.0"
108
+ "@modern-js/builder-rspack-provider": "^2.35.0"
109
109
  },
110
110
  "peerDependenciesMeta": {
111
111
  "@modern-js/builder-rspack-provider": {