@dao42/d42paas-front 0.6.23 → 0.7.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/dist/DaoPaaS.es.js +53 -48
- package/dist/DaoPaaS.umd.js +310 -307
- package/package.json +20 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dao42/d42paas-front",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "eric183 <kk297466058@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/dao42/d42paas_frontend#readme",
|
|
@@ -36,18 +36,14 @@
|
|
|
36
36
|
"fix": "eslint --fix --ext .jsx src/**",
|
|
37
37
|
"copyTS": "shx cp ./src/types/editor.d.ts ./dist",
|
|
38
38
|
"np": "npm publish --access-public",
|
|
39
|
-
"patch": "npm version patch",
|
|
39
|
+
"patch": "yarn vite && npm version patch",
|
|
40
40
|
"test": "jest --verbose"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@dao42/d42paas_rtc": "^0.1.8"
|
|
44
|
-
"@headlessui/react": "^1.4.3",
|
|
45
|
-
"@types/jest": "^27.4.0",
|
|
46
|
-
"dayjs": "^1.10.7",
|
|
47
|
-
"ts-jest": "^27.1.3",
|
|
48
|
-
"typescript": "4.5"
|
|
43
|
+
"@dao42/d42paas_rtc": "^0.1.8"
|
|
49
44
|
},
|
|
50
45
|
"devDependencies": {
|
|
46
|
+
"@headlessui/react": "^1.4.3",
|
|
51
47
|
"@babel/core": "^7.9",
|
|
52
48
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
53
49
|
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
@@ -55,6 +51,7 @@
|
|
|
55
51
|
"@babel/preset-react": "^7.14.5",
|
|
56
52
|
"@babel/preset-typescript": "^7.15.0",
|
|
57
53
|
"@babel/runtime": "^7.15.4",
|
|
54
|
+
"@clintharris/fake-indexeddb": "^3.1.4",
|
|
58
55
|
"@emotion/babel-plugin": "^11.3.0",
|
|
59
56
|
"@emotion/babel-preset-css-prop": "^11.2.0",
|
|
60
57
|
"@emotion/core": "^11.0.0",
|
|
@@ -98,6 +95,7 @@
|
|
|
98
95
|
"css-minimizer-webpack-plugin": "^3.1.4",
|
|
99
96
|
"cssnano": "^5.0.11",
|
|
100
97
|
"dayjs": "^1.10.7",
|
|
98
|
+
"dexie": "^3.2.0",
|
|
101
99
|
"dotenv": "^10.0.0",
|
|
102
100
|
"dotenv-webpack": "^7.0.3",
|
|
103
101
|
"file-loader": "^6.2.0",
|
|
@@ -141,6 +139,7 @@
|
|
|
141
139
|
"rxjs": "^7.2.0",
|
|
142
140
|
"sass": "^1.43.2",
|
|
143
141
|
"sass-loader": "^12.2.0",
|
|
142
|
+
"showdown": "^2.0.0-alpha",
|
|
144
143
|
"socket.io": "^4.2.0",
|
|
145
144
|
"socket.io-client": "^4.2.0",
|
|
146
145
|
"source-map-loader": "^3.0.0",
|
|
@@ -150,10 +149,11 @@
|
|
|
150
149
|
"tailwindcss": "^3.0.7",
|
|
151
150
|
"terser-webpack-plugin": "^5.2.5",
|
|
152
151
|
"three": "^0.132.2",
|
|
153
|
-
"ts-jest": "^27.
|
|
152
|
+
"ts-jest": "^27.1.3",
|
|
154
153
|
"ts-loader": "^9.2.5",
|
|
155
154
|
"ts-node": "^10.0.0",
|
|
156
155
|
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
156
|
+
"typescript": "4.5",
|
|
157
157
|
"uuid": "^8.3.2",
|
|
158
158
|
"vite": "^2.7.2",
|
|
159
159
|
"webpack": "^5.52.0",
|
|
@@ -177,6 +177,11 @@
|
|
|
177
177
|
"url": "https://github.com/dao42/d42paas_frontend/issues"
|
|
178
178
|
},
|
|
179
179
|
"jest": {
|
|
180
|
+
"globals": {
|
|
181
|
+
"ts-jest": {
|
|
182
|
+
"tsConfig": "tsconfig.json"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
180
185
|
"preset": "ts-jest",
|
|
181
186
|
"testMatch": [
|
|
182
187
|
"**/__tests__/**/*.ts?(x)",
|
|
@@ -189,8 +194,12 @@
|
|
|
189
194
|
"^(stores/.+)$": "<rootDir>/src/$1/",
|
|
190
195
|
"^(views/.+)$": "<rootDir>/src/$1/",
|
|
191
196
|
"^(assets/.+)$": "<rootDir>/src/$1/",
|
|
192
|
-
"^(models/.+)$": "<rootDir>/src/$1/"
|
|
193
|
-
|
|
197
|
+
"^(models/.+)$": "<rootDir>/src/$1/",
|
|
198
|
+
"^~/(.*)$": "<rootDir>/src/$1"
|
|
199
|
+
},
|
|
200
|
+
"setupFiles": [
|
|
201
|
+
"<rootDir>/__test__/globals-test.ts"
|
|
202
|
+
]
|
|
194
203
|
},
|
|
195
204
|
"gitHead": "492b228acbf6f7bc309984755a8dd948ea6fb0e2"
|
|
196
205
|
}
|