@gravity-ui/app-builder 0.14.0 → 0.14.2-beta.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/dist/commands/build/build-service/client.js +4 -1
- package/dist/commands/dev/client.d.ts +2 -1
- package/dist/commands/dev/client.js +57 -24
- package/dist/common/babel/index.js +1 -1
- package/dist/common/babel/ui-preset.js +0 -14
- package/dist/common/config.js +2 -0
- package/dist/common/library/index.js +1 -0
- package/dist/common/logger/colors.d.ts +1 -1
- package/dist/common/logger/index.d.ts +1 -1
- package/dist/common/models/index.d.ts +13 -0
- package/dist/common/rspack/compile.d.ts +2 -0
- package/dist/common/rspack/compile.js +27 -0
- package/dist/common/rspack/config.d.ts +24 -0
- package/dist/common/rspack/config.js +772 -0
- package/dist/common/rspack/lazy-client.d.ts +1 -0
- package/dist/common/rspack/lazy-client.js +63 -0
- package/dist/common/rspack/progress-plugin.d.ts +11 -0
- package/dist/common/rspack/progress-plugin.js +43 -0
- package/dist/common/rspack/public-path.d.ts +1 -0
- package/dist/common/rspack/public-path.js +4 -0
- package/dist/common/rspack/utils.d.ts +4 -0
- package/dist/common/rspack/utils.js +81 -0
- package/dist/common/rspack/worker/public-path.worker.d.ts +1 -0
- package/dist/common/rspack/worker/public-path.worker.js +3 -0
- package/dist/common/rspack/worker/web-worker.d.mts +8 -0
- package/dist/common/rspack/worker/web-worker.mjs +32 -0
- package/dist/common/rspack/worker/worker-loader.d.ts +4 -0
- package/dist/common/rspack/worker/worker-loader.js +177 -0
- package/dist/common/s3-upload/create-plugin.d.ts +3 -0
- package/dist/common/s3-upload/create-plugin.js +47 -0
- package/dist/common/s3-upload/index.d.ts +1 -0
- package/dist/common/s3-upload/index.js +3 -1
- package/dist/common/webpack/config.js +1 -40
- package/dist/common/webpack/progress-plugin.d.ts +3 -1
- package/dist/common/webpack/progress-plugin.js +9 -2
- package/dist/common/webpack/storybook.d.ts +1 -1
- package/package.json +14 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-ui/app-builder",
|
|
3
|
-
"version": "0.14.0",
|
|
3
|
+
"version": "0.14.2-beta.0",
|
|
4
4
|
"description": "Develop and build your React client-server projects, powered by typescript and webpack",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -59,19 +59,20 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@aws-sdk/client-s3": "^3.353.0",
|
|
62
|
-
"@babel/core": "^7.
|
|
63
|
-
"@babel/helper-plugin-utils": "^7.
|
|
64
|
-
"@babel/plugin-transform-class-properties": "^7.25.0",
|
|
62
|
+
"@babel/core": "^7.26.0",
|
|
63
|
+
"@babel/helper-plugin-utils": "^7.26.0",
|
|
65
64
|
"@babel/plugin-transform-dynamic-import": "^7.25.0",
|
|
66
|
-
"@babel/plugin-transform-modules-commonjs": "^7.
|
|
67
|
-
"@babel/plugin-transform-private-methods": "^7.25.0",
|
|
65
|
+
"@babel/plugin-transform-modules-commonjs": "^7.26.0",
|
|
68
66
|
"@babel/plugin-transform-runtime": "^7.25.0",
|
|
69
|
-
"@babel/preset-env": "^7.
|
|
70
|
-
"@babel/preset-react": "^7.
|
|
71
|
-
"@babel/preset-typescript": "^7.
|
|
72
|
-
"@babel/runtime": "^7.
|
|
67
|
+
"@babel/preset-env": "^7.26.0",
|
|
68
|
+
"@babel/preset-react": "^7.26.0",
|
|
69
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
70
|
+
"@babel/runtime": "^7.26.0",
|
|
73
71
|
"@okikio/sharedworker": "^1.0.7",
|
|
74
72
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
|
73
|
+
"@rspack/core": "^1.2.2",
|
|
74
|
+
"@rspack/dev-server": "^1.0.10",
|
|
75
|
+
"@rspack/plugin-react-refresh": "^1.0.0",
|
|
75
76
|
"@statoscope/webpack-plugin": "^5.28.2",
|
|
76
77
|
"@svgr/core": "^8.1.0",
|
|
77
78
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
@@ -113,6 +114,7 @@
|
|
|
113
114
|
"react-refresh": "^0.14.2",
|
|
114
115
|
"resolve-url-loader": "^5.0.0",
|
|
115
116
|
"rimraf": "^5.0.7",
|
|
117
|
+
"rspack-manifest-plugin": "^5.0.1",
|
|
116
118
|
"sass": "^1.79.0",
|
|
117
119
|
"sass-loader": "^16.0.0",
|
|
118
120
|
"semver": "^7.6.3",
|
|
@@ -122,6 +124,7 @@
|
|
|
122
124
|
"style-loader": "^4.0.0",
|
|
123
125
|
"svgo": "^3.3.2",
|
|
124
126
|
"terser-webpack-plugin": "5.3.10",
|
|
127
|
+
"ts-checker-rspack-plugin": "^1.1.1",
|
|
125
128
|
"ts-node": "10.9.2",
|
|
126
129
|
"tslib": "^2.6.2",
|
|
127
130
|
"typescript": "~5.6.0",
|
|
@@ -131,6 +134,7 @@
|
|
|
131
134
|
"webpack-dev-server": "^5.1.0",
|
|
132
135
|
"webpack-manifest-plugin": "^5.0.0",
|
|
133
136
|
"worker-loader": "^3.0.8",
|
|
137
|
+
"worker-rspack-loader": "^3.1.2",
|
|
134
138
|
"yargs": "^17.7.2"
|
|
135
139
|
},
|
|
136
140
|
"devDependencies": {
|