chore: v3.1.3

This commit is contained in:
winixt 2024-01-24 21:23:33 +08:00
parent 630fbe7e1f
commit e32c8d9c52
4 changed files with 55 additions and 41 deletions

View File

@ -1,3 +1,17 @@
## [3.1.3](https://github.com/WeBankFinTech/fes.js/compare/v3.1.2...v3.1.3) (2024-1-24)
### Bug Fixes
* webpack 丢失 publicPath ([#229](https://github.com/WeBankFinTech/fes.js/issues/229)) ([20303cf](https://github.com/WeBankFinTech/fes.js/commit/20303cfec9f1109cafb1e7f925369481898a7a03))
### Features
* [plugin-local] 添加 getLocal API 获取当前用户选择的语言 ([#228](https://github.com/WeBankFinTech/fes.js/issues/228)) ([5c7bdca](https://github.com/WeBankFinTech/fes.js/commit/5c7bdca371433d65ac3ca0cb995795e0b28e0a11))
## [3.1.2](https://github.com/WeBankFinTech/fes.js/compare/v3.1.1...v3.1.2) (2024-01-13) ## [3.1.2](https://github.com/WeBankFinTech/fes.js/compare/v3.1.1...v3.1.2) (2024-01-13)

View File

@ -1,7 +1,7 @@
{ {
"name": "fes.js", "name": "fes.js",
"type": "module", "type": "module",
"version": "3.1.2", "version": "3.1.3",
"private": true, "private": true,
"description": "一个好用的前端管理台快速开发框架", "description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true, "preferGlobal": true,

View File

@ -1,6 +1,6 @@
{ {
"name": "@fesjs/builder-webpack", "name": "@fesjs/builder-webpack",
"version": "3.0.9", "version": "3.0.10",
"description": "@fesjs/builder-webpack", "description": "@fesjs/builder-webpack",
"author": "qlin", "author": "qlin",
"license": "MIT", "license": "MIT",

View File

@ -1,41 +1,41 @@
{ {
"name": "@fesjs/plugin-locale", "name": "@fesjs/plugin-locale",
"version": "4.2.0", "version": "4.2.1",
"description": "@fesjs/plugin-locale", "description": "@fesjs/plugin-locale",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib", "lib",
"types.d.ts" "types.d.ts"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git", "url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-plugin-locale" "directory": "packages/fes-plugin-locale"
}, },
"keywords": [ "keywords": [
"fes" "fes"
], ],
"author": "harrywan", "author": "harrywan",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues" "url": "https://github.com/WeBankFinTech/fes.js/issues"
}, },
"homepage": "https://github.com/WeBankFinTech/fes.js#readme", "homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"dependencies": { "dependencies": {
"@fesjs/utils": "^3.0.1", "@fesjs/utils": "^3.0.1",
"vue-i18n": "^9.0.0", "vue-i18n": "^9.0.0",
"lodash-es": "^4.17.21" "lodash-es": "^4.17.21"
}, },
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.1.4", "@fesjs/fes": "^3.1.4",
"@fesjs/fes-design": ">=0.7.0", "@fesjs/fes-design": ">=0.7.0",
"vue": "^3.2.47" "vue": "^3.2.47"
}, },
"typings": "./types.d.ts" "typings": "./types.d.ts"
} }