hookehuyr

🔧 build: 更新最新依赖

...@@ -15,27 +15,29 @@ ...@@ -15,27 +15,29 @@
15 "publish": "npm run build && npm run rm && npm run mv && npm run git && npm run update" 15 "publish": "npm run build && npm run rm && npm run mv && npm run git && npm run update"
16 }, 16 },
17 "dependencies": { 17 "dependencies": {
18 - "@vueuse/core": "^8.4.2", 18 + "@vueuse/core": "^8.5.0",
19 "animate.css": "^4.1.1", 19 "animate.css": "^4.1.1",
20 "html2canvas": "^1.4.1", 20 "html2canvas": "^1.4.1",
21 "jquery": "^3.6.0", 21 "jquery": "^3.6.0",
22 "js-cookie": "^3.0.1", 22 "js-cookie": "^3.0.1",
23 "lodash": "^4.17.21", 23 "lodash": "^4.17.21",
24 - "moment": "^2.29.1", 24 + "moment": "^2.29.3",
25 "mui-player": "^1.6.0", 25 "mui-player": "^1.6.0",
26 "uuid": "^8.3.2", 26 "uuid": "^8.3.2",
27 "vant": "^4.0.0-alpha.3", 27 "vant": "^4.0.0-alpha.3",
28 - "vue": "^3.2.31", 28 + "vite-plugin-dynamic-import": "^0.9.5",
29 + "vite-plugin-mp": "^1.5.2",
30 + "vue": "^3.2.34",
29 "weixin-js-sdk": "^1.6.0" 31 "weixin-js-sdk": "^1.6.0"
30 }, 32 },
31 "devDependencies": { 33 "devDependencies": {
32 "@types/jquery": "^3.5.14", 34 "@types/jquery": "^3.5.14",
33 "@types/lodash": "^4.14.182", 35 "@types/lodash": "^4.14.182",
34 "@vitejs/plugin-vue": "^2.3.3", 36 "@vitejs/plugin-vue": "^2.3.3",
35 - "@vue/compiler-sfc": "^3.2.33", 37 + "@vue/compiler-sfc": "^3.2.34",
36 "axios": "^0.26.1", 38 "axios": "^0.26.1",
37 "less": "^4.1.2", 39 "less": "^4.1.2",
38 - "pinia": "^2.0.12", 40 + "pinia": "^2.0.14",
39 "postcss-px-to-viewport": "^1.1.1", 41 "postcss-px-to-viewport": "^1.1.1",
40 "qs": "^6.10.3", 42 "qs": "^6.10.3",
41 "tslint": "^6.1.3", 43 "tslint": "^6.1.3",
......
1 +module.exports = {
2 + printWidth: 100,
3 + semi: true,
4 + vueIndentScriptAndStyle: true,
5 + singleQuote: true,
6 + trailingComma: 'all',
7 + proseWrap: 'never',
8 + htmlWhitespaceSensitivity: 'strict',
9 + endOfLine: 'auto',
10 +};
This diff is collapsed. Click to expand it.