@dao42/d42paas-front 0.5.8 → 0.5.9
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/DaoPaaS.es.js +1671 -610
- package/dist/DaoPaaS.umd.js +521 -521
- package/dist/assets/css.worker.206d102d.js +62 -0
- package/dist/assets/editor.worker.8ed67d4a.js +4 -0
- package/dist/assets/html.worker.058e1d41.js +452 -0
- package/dist/assets/json.worker.8cc65055.js +35 -0
- package/dist/assets/ts.worker.157409bb.js +35320 -0
- package/dist/index.html +1 -1
- package/package.json +6 -4
package/dist/index.html
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dao42/d42paas-front",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "eric183 <kk297466058@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/dao42/d42paas_frontend#readme",
|
|
@@ -28,10 +28,12 @@
|
|
|
28
28
|
"start:web": "yarn prebuild && yarn vite",
|
|
29
29
|
"storybook": "start-storybook -p 6006",
|
|
30
30
|
"build-storybook": "build-storybook -o .storybook/dist",
|
|
31
|
-
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig.dev.json\" webpack serve --open --config ./config/webpack.dev.config.ts",
|
|
31
|
+
"dev:disble": "cross-env TS_NODE_PROJECT=\"tsconfig.dev.json\" webpack serve --open --config ./config/webpack.dev.config.ts",
|
|
32
32
|
"analyse": "cross-env NODE_ENV=production TS_NODE_PROJECT=\"tsconfig.json\" webpack --config ./config/webpack.analytics.config.js",
|
|
33
|
-
"
|
|
34
|
-
"vite": "
|
|
33
|
+
"dev": "vite serve --host --config ./config/vite.config.ts",
|
|
34
|
+
"vite": "vite build --mode production --config ./config/vite.config.ts && yarn run copyTS && yarn patch",
|
|
35
|
+
"dev:save": "NODE_ENV=development vite --host --mode development --config ./config/vite.config.ts",
|
|
36
|
+
"vite:save": "NODE_ENV=production vite build --mode production --config ./config/vite.config.ts && yarn run copyTS && yarn patch",
|
|
35
37
|
"fix": "eslint --fix --ext .jsx src/**",
|
|
36
38
|
"copyTS": "shx cp ./src/types/editor.d.ts ./dist",
|
|
37
39
|
"np": "npm publish --access-public",
|