mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
fix: 优化依赖 (#220)
This commit is contained in:
parent
585235697a
commit
3e580dbed9
@ -46,18 +46,16 @@ export default defineRuntimeConfig({
|
||||
},
|
||||
// http 异常,和插件异常
|
||||
errorHandler(error) {
|
||||
if (error.response) {
|
||||
// 处理业务异常,例如上述 transformData 抛出的异常
|
||||
if (error.code) {
|
||||
console.log(error.msg)
|
||||
} else if (error.response) {
|
||||
// 请求成功发出且服务器也响应了状态码,但状态代码超出了 2xx 的范围
|
||||
console.log(error.response.data);
|
||||
console.log(error.response.status);
|
||||
console.log(error.response.headers);
|
||||
} else if (error.msg) {
|
||||
console.log(error.msg);
|
||||
console.log(`服务异常:${error.response.status}`)
|
||||
} else {
|
||||
// 发送请求时出了点问题
|
||||
console.log('Error', error.message);
|
||||
// 请求异常
|
||||
console.log(error.msg || error.message || `请求失败`)
|
||||
}
|
||||
console.log(error.config);
|
||||
},
|
||||
// 支持其他 fetch 配置
|
||||
...otherConfigs,
|
||||
|
12
package.json
12
package.json
@ -30,7 +30,7 @@
|
||||
],
|
||||
"dependencies": {
|
||||
"chalk": "^5.0.1",
|
||||
"conventional-changelog-cli": "^2.2.2",
|
||||
"conventional-changelog-cli": "^4.1.0",
|
||||
"enquirer": "^2.3.6",
|
||||
"execa": "^6.1.0",
|
||||
"minimist": "^1.2.6",
|
||||
@ -39,19 +39,17 @@
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^11.0.0",
|
||||
"@commitlint/config-conventional": "^11.0.0",
|
||||
"@vite-pwa/vitepress": "^0.0.5",
|
||||
"@webank/eslint-config-webank": "1.2.7",
|
||||
"chokidar": "^3.5.2",
|
||||
"commitizen": "^4.2.1",
|
||||
"chokidar": "^3.5.3",
|
||||
"commitizen": "^4.3.0",
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"deepmerge": "^4.2.2",
|
||||
"fs-extra": "^11.1.1",
|
||||
"husky": "^8.0.3",
|
||||
"lint-staged": "^13.2.0",
|
||||
"typescript": "^5.0.4",
|
||||
"vite-plugin-pwa": "^0.14.7",
|
||||
"vitepress": "1.0.0-alpha.73",
|
||||
"vue": "^3.2.47",
|
||||
"vue": "^3.3.4",
|
||||
"yargs-parser": "^21.1.1"
|
||||
},
|
||||
"lint-staged": {
|
||||
@ -70,4 +68,4 @@
|
||||
"path": "./node_modules/cz-conventional-changelog"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
// fes.config.js 只负责管理 cli 相关的配置
|
||||
import { defineBuildConfig } from '@fesjs/fes';
|
||||
import pxtoviewport from '@ttou/postcss-px-to-viewport';
|
||||
import postcsspxtoviewport8plugin from 'postcss-px-to-viewport-8-plugin';
|
||||
|
||||
|
||||
export default defineBuildConfig({
|
||||
define: {
|
||||
@ -15,7 +16,7 @@ export default defineBuildConfig({
|
||||
ios: '10',
|
||||
},
|
||||
extraPostCSSPlugins: [
|
||||
pxtoviewport({
|
||||
postcsspxtoviewport8plugin({
|
||||
unitToConvert: 'px',
|
||||
viewportWidth: 375,
|
||||
unitPrecision: 5,
|
||||
|
@ -12,7 +12,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@webank/eslint-config-webank": "1.2.7",
|
||||
"@ttou/postcss-px-to-viewport": "^2.0.3"
|
||||
"postcss-px-to-viewport-8-plugin": "^1.2.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fesjs/fes": "^3.0.0",
|
||||
|
@ -19,8 +19,8 @@
|
||||
"dependencies": {
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.21.3",
|
||||
"@babel/preset-env": "^7.20.2",
|
||||
"@babel/core": "^7.23.2",
|
||||
"@babel/preset-env": "^7.23.2",
|
||||
"@webank/eslint-config-webank": "1.2.7",
|
||||
"chalk": "^4.1.2",
|
||||
"chokidar": "^3.5.2",
|
||||
|
@ -26,20 +26,20 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.21.3",
|
||||
"@babel/plugin-proposal-do-expressions": "^7.18.6",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.18.10",
|
||||
"@babel/plugin-proposal-function-bind": "^7.18.9",
|
||||
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
|
||||
"@babel/plugin-transform-runtime": "^7.21.0",
|
||||
"@babel/preset-env": "7.20.2",
|
||||
"@babel/preset-typescript": "^7.21.0",
|
||||
"@babel/core": "^7.23.2",
|
||||
"@babel/plugin-proposal-do-expressions": "^7.22.5",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.22.17",
|
||||
"@babel/plugin-proposal-function-bind": "^7.22.5",
|
||||
"@babel/plugin-proposal-pipeline-operator": "^7.22.15",
|
||||
"@babel/plugin-transform-runtime": "^7.23.2",
|
||||
"@babel/preset-env": "^7.23.2",
|
||||
"@babel/preset-typescript": "^7.23.2",
|
||||
"@fesjs/utils": "^3.0.1",
|
||||
"@vue/babel-plugin-jsx": "^1.1.1",
|
||||
"ajv": "^8.12.0",
|
||||
"autoprefixer": "^10.4.14",
|
||||
"babel-loader": "^9.1.2",
|
||||
"cli-highlight": "^2.1.4",
|
||||
"cli-highlight": "^2.1.11",
|
||||
"cliui": "^8.0.1",
|
||||
"connect-history-api-fallback": "^2.0.0",
|
||||
"copy-webpack-plugin": "^11.0.0",
|
||||
@ -69,4 +69,4 @@
|
||||
"@fesjs/fes": "^3.1.4",
|
||||
"core-js": "^3.29.1"
|
||||
}
|
||||
}
|
||||
}
|
@ -24,9 +24,9 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.21.3",
|
||||
"@babel/preset-env": "^7.20.2",
|
||||
"@babel/register": "^7.21.0",
|
||||
"@babel/core": "^7.23.2",
|
||||
"@babel/preset-env": "^7.23.2",
|
||||
"@babel/register": "^7.22.15",
|
||||
"@fesjs/utils": "^3.0.1",
|
||||
"commander": "^7.0.0",
|
||||
"dotenv": "8.2.0",
|
||||
@ -34,4 +34,4 @@
|
||||
"set-value": "3.0.2",
|
||||
"tapable": "^2.2.0"
|
||||
}
|
||||
}
|
||||
}
|
@ -33,8 +33,8 @@
|
||||
"@fesjs/fes": "^3.1.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.21.3",
|
||||
"@babel/preset-env": "^7.15.0",
|
||||
"@babel/core": "^7.23.2",
|
||||
"@babel/preset-env": "^7.23.2",
|
||||
"@vue/babel-plugin-jsx": "^1.0.6",
|
||||
"babel-jest": "^29.0.0",
|
||||
"jest": "^29.0.0",
|
||||
@ -44,4 +44,4 @@
|
||||
"typescript": "^5.0.4",
|
||||
"@vue/vue3-jest": "^29.2.0"
|
||||
}
|
||||
}
|
||||
}
|
@ -32,9 +32,9 @@
|
||||
"vue": "^3.2.47"
|
||||
},
|
||||
"dependencies": {
|
||||
"vite-plugin-windicss": "^1.8.3",
|
||||
"vite-plugin-windicss": "^1.9.1",
|
||||
"windicss": "^3.5.1",
|
||||
"windicss-webpack-plugin": "^1.6.0"
|
||||
},
|
||||
"typings": "./types.d.ts"
|
||||
}
|
||||
}
|
@ -29,7 +29,7 @@
|
||||
"@fesjs/compiler": "^3.0.1",
|
||||
"@fesjs/utils": "^3.0.1",
|
||||
"@fesjs/runtime": "^3.0.0",
|
||||
"@vue/compiler-sfc": "^3.2.47",
|
||||
"@vue/compiler-sfc": "^3.3.4",
|
||||
"envinfo": "^7.7.3",
|
||||
"express": "^4.17.3",
|
||||
"mockjs": "^1.1.0"
|
||||
@ -38,4 +38,4 @@
|
||||
"vue": "^3.2.47"
|
||||
},
|
||||
"typings": "./types.d.ts"
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
// fes.config.js 只负责管理 cli 相关的配置
|
||||
import pxtoviewport from '@ttou/postcss-px-to-viewport';
|
||||
import pxtoviewport from 'postcss-px-to-viewport-8-plugin';
|
||||
import { defineBuildConfig } from '@fesjs/fes';
|
||||
|
||||
export default defineBuildConfig({
|
||||
|
@ -40,7 +40,7 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ttou/postcss-px-to-viewport": "^2.0.3",
|
||||
"postcss-px-to-viewport-8-plugin": "^1.2.3",
|
||||
"@fesjs/fes": "workspace:*",
|
||||
"@fesjs/plugin-icon": "workspace:*",
|
||||
"@fesjs/plugin-request": "workspace:*",
|
||||
|
8532
pnpm-lock.yaml
generated
8532
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user