@zohodesk/react-cli 1.1.17 → 1.1.18-exp.2
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 +13 -0
- package/bin/cli.js +4 -0
- package/lib/babel/cmjs-plugins-presets.js +11 -6
- package/lib/babel/es-plugins-presets.js +12 -6
- package/lib/configs/webpack.dev.config.js +11 -2
- package/lib/configs/webpack.prod.config.js +5 -1
- package/lib/schemas/index.js +7 -0
- package/npm-shrinkwrap.json +1103 -32
- package/package.json +6 -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.18-exp.2",
|
|
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,6 +98,8 @@
|
|
|
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",
|
|
@@ -121,5 +123,8 @@
|
|
|
121
123
|
],
|
|
122
124
|
"@babel/react"
|
|
123
125
|
]
|
|
126
|
+
},
|
|
127
|
+
"devDependencies": {
|
|
128
|
+
"@babel/preset-typescript": "^7.23.2"
|
|
124
129
|
}
|
|
125
130
|
}
|