@zohodesk/react-cli 1.1.20 → 1.1.22-exp.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.
- package/README.md +38 -1
- package/bin/cli.js +4 -0
- package/lib/babel/cmjs-plugins-presets.js +24 -9
- package/lib/babel/es-plugins-presets.js +33 -18
- package/lib/configs/jest.config.js +3 -3
- package/lib/configs/resolvers.js +1 -0
- package/lib/configs/webpack.dev.config.js +7 -2
- package/lib/configs/webpack.prod.config.js +12 -4
- package/lib/jest/preProcessors/jsPreprocessor.js +23 -2
- package/lib/loaderUtils/getDevJsLoaders.js +2 -1
- package/lib/loaders/workerLoader.js +39 -24
- package/lib/pluginUtils/configHtmlWebpackPlugins.js +57 -1
- package/lib/pluginUtils/getDevPlugins.js +9 -4
- package/lib/pluginUtils/getProdPlugins.js +6 -1
- package/lib/plugins/CustomScriptLoadingStrategyPlugin.js +108 -0
- package/lib/plugins/EventsHandlingPlugin.js +34 -0
- package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +5 -1
- package/lib/schemas/index.js +12 -1
- package/lib/utils/index.js +14 -0
- package/lib/utils/typeCheck.js +10 -0
- package/npm-shrinkwrap.json +983 -27
- package/package.json +4 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zohodesk/react-cli",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.22-exp.1",
|
4
4
|
"description": "A CLI tool for build modern web application and libraries",
|
5
5
|
"scripts": {
|
6
6
|
"init": "node ./lib/utils/init.js",
|
@@ -98,9 +98,12 @@
|
|
98
98
|
"redux-mock-store": "1.5.4",
|
99
99
|
"rimraf": "3.0.2",
|
100
100
|
"script-loader": "0.7.2",
|
101
|
+
"ts-loader": "8.2.0",
|
102
|
+
"typescript": "5.2.2",
|
101
103
|
"uglifycss": "0.0.29",
|
102
104
|
"url-loader": "4.1.0",
|
103
105
|
"webpack": "4.44.1",
|
106
|
+
"@babel/preset-typescript": "7.23.2",
|
104
107
|
"webpack-bundle-analyzer": "4.5.0",
|
105
108
|
"webpack-cli": "3.3.12",
|
106
109
|
"webpack-core": "0.6.9",
|