mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
Merge branch 'vue3' of https://github.com/WeBankFinTech/fes.js into vue3
This commit is contained in:
commit
007647044c
@ -7,7 +7,7 @@
|
|||||||
- 主题,提供 `light`、`dark` 两种主题。
|
- 主题,提供 `light`、`dark` 两种主题。
|
||||||
- 默认实现对路由的 404、403 处理。
|
- 默认实现对路由的 404、403 处理。
|
||||||
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
||||||
- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。
|
- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。
|
||||||
- 支持自定义头部区域。
|
- 支持自定义头部区域。
|
||||||
|
|
||||||
- 可配置页面是否需要 layout。
|
- 可配置页面是否需要 layout。
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
- 主题,提供 `light`、`dark` 两种主题。
|
- 主题,提供 `light`、`dark` 两种主题。
|
||||||
- 默认实现对路由的 404、403 处理。
|
- 默认实现对路由的 404、403 处理。
|
||||||
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
||||||
- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。
|
- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。
|
||||||
- 支持自定义头部区域。
|
- 支持自定义头部区域。
|
||||||
|
|
||||||
- 可配置页面是否需要 layout。
|
- 可配置页面是否需要 layout。
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"changelog": {
|
"changelog": {
|
||||||
"repo": "WeBankFinTech/fes.js",
|
"repo": "WeBankFinTech/fes.js",
|
||||||
"cacheDir": ".changelog",
|
"cacheDir": ".changelog",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/create-fes-app",
|
"name": "@fesjs/create-fes-app",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "create a app base on fes.js",
|
"description": "create a app base on fes.js",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/compiler",
|
"name": "@fesjs/compiler",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/compiler",
|
"description": "@fesjs/compiler",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -12,8 +12,8 @@ import {
|
|||||||
import { PluginType } from '../enums';
|
import { PluginType } from '../enums';
|
||||||
|
|
||||||
const RE = {
|
const RE = {
|
||||||
[PluginType.plugin]: /^(@fesjs\/)?plugin-/,
|
[PluginType.plugin]: /^(@fesjs\/|@webank\/fes-|fes-)?plugin-/,
|
||||||
[PluginType.preset]: /^(@fesjs\/)?preset-/
|
[PluginType.preset]: /^(@fesjs\/|@webank\/fes-|fes-)?preset-/
|
||||||
};
|
};
|
||||||
|
|
||||||
export function isPluginOrPreset(type, name) {
|
export function isPluginOrPreset(type, name) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-jest",
|
"name": "@fesjs/plugin-jest",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/plugin-jest",
|
"description": "@fesjs/plugin-jest",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
@ -31,7 +31,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "7.11.6",
|
"@babel/core": "7.11.6",
|
||||||
"@fesjs/compiler": "^2.0.0-rc.1",
|
"@fesjs/compiler": "^2.0.0-rc.2",
|
||||||
"@umijs/babel-preset-umi": "3.2.24",
|
"@umijs/babel-preset-umi": "3.2.24",
|
||||||
"babel-core": "^7.0.0-bridge.0",
|
"babel-core": "^7.0.0-bridge.0",
|
||||||
"babel-jest": "^26.6.3",
|
"babel-jest": "^26.6.3",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-layout",
|
"name": "@fesjs/plugin-layout",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/plugin-layout",
|
"description": "@fesjs/plugin-layout",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-locale",
|
"name": "@fesjs/plugin-locale",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/plugin-locale",
|
"description": "@fesjs/plugin-locale",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -48,9 +48,9 @@ export default (api) => {
|
|||||||
...api.config.locale
|
...api.config.locale
|
||||||
};
|
};
|
||||||
|
|
||||||
const loacleConfigFileBasePath = getLocaleFileBasePath();
|
const localeConfigFileBasePath = getLocaleFileBasePath();
|
||||||
|
|
||||||
const locales = getLocalesJSON(loacleConfigFileBasePath);
|
const locales = getLocalesJSON(localeConfigFileBasePath);
|
||||||
|
|
||||||
api.writeTmpFile({
|
api.writeTmpFile({
|
||||||
path: absoluteFilePath,
|
path: absoluteFilePath,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-request",
|
"name": "@fesjs/plugin-request",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/plugin-request",
|
"description": "@fesjs/plugin-request",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -5,7 +5,7 @@ export default async ({
|
|||||||
errorHandler = {},
|
errorHandler = {},
|
||||||
response
|
response
|
||||||
}, next) => {
|
}, next) => {
|
||||||
if (response && isObject(response.data) && response.data.code !== '0') {
|
if (response && isObject(response.data) && response.data.code && response.data.code !== '0') {
|
||||||
errorHandler[response.data.code] && errorHandler[response.data.code](response);
|
errorHandler[response.data.code] && errorHandler[response.data.code](response);
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
if (error.type) {
|
if (error.type) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-vuex",
|
"name": "@fesjs/plugin-vuex",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/plugin-vuex",
|
"description": "@fesjs/plugin-vuex",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/preset-built-in",
|
"name": "@fesjs/preset-built-in",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "@fesjs/preset-built-in",
|
"description": "@fesjs/preset-built-in",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "lib/index.d.ts",
|
"types": "lib/index.d.ts",
|
||||||
@ -32,7 +32,7 @@
|
|||||||
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
|
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
|
||||||
"@babel/plugin-transform-runtime": "^7.12.13",
|
"@babel/plugin-transform-runtime": "^7.12.13",
|
||||||
"@babel/preset-env": "^7.12.13",
|
"@babel/preset-env": "^7.12.13",
|
||||||
"@fesjs/compiler": "^2.0.0-rc.1",
|
"@fesjs/compiler": "^2.0.0-rc.2",
|
||||||
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
|
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
|
||||||
"@umijs/utils": "3.3.3",
|
"@umijs/utils": "3.3.3",
|
||||||
"@vue/babel-plugin-jsx": "^1.0.2",
|
"@vue/babel-plugin-jsx": "^1.0.2",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/fes",
|
"name": "@fesjs/fes",
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0-rc.2",
|
||||||
"description": "一个好用的前端管理台快速开发框架",
|
"description": "一个好用的前端管理台快速开发框架",
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -39,8 +39,8 @@
|
|||||||
"strong"
|
"strong"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fesjs/compiler": "^2.0.0-rc.1",
|
"@fesjs/compiler": "^2.0.0-rc.2",
|
||||||
"@fesjs/preset-built-in": "^2.0.0-rc.1",
|
"@fesjs/preset-built-in": "^2.0.0-rc.2",
|
||||||
"@fesjs/runtime": "^2.0.0-rc.1",
|
"@fesjs/runtime": "^2.0.0-rc.1",
|
||||||
"@umijs/utils": "3.3.3",
|
"@umijs/utils": "3.3.3",
|
||||||
"resolve-cwd": "^3.0.0"
|
"resolve-cwd": "^3.0.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user