diff --git a/.eslintrc.js b/.eslintrc.js
index 3d1b282e..38523df7 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -17,6 +17,9 @@ module.exports = {
'no-param-reassign': 'off',
'func-names': 'off',
'global-require': 'off',
- 'class-methods-use-this': 'off'
+ 'class-methods-use-this': 'off',
+ 'no-restricted-syntax': 'off',
+ 'import/prefer-default-export': 'off',
+ 'import/no-unresolved': 'off'
}
};
diff --git a/packages/fes-cli/bin/index.js b/packages/fes-cli/bin/index.js
index ca6caa64..ddd3885c 100755
--- a/packages/fes-cli/bin/index.js
+++ b/packages/fes-cli/bin/index.js
@@ -35,14 +35,6 @@ commander.command('route')
route(config);
});
-commander.command('components')
- .description('预编译 src/components 里面的组件')
- .action(() => {
- const components = require('../build/tasks/components');
- const config = generateConfig('components');
- components(config);
- });
-
commander.command('dev')
.description('开发调试, 默认 local')
.action(() => {
diff --git a/packages/fes-cli/build/configs/postcss.config.js b/packages/fes-cli/build/configs/postcss.config.js
index 1fd92570..b13e9458 100644
--- a/packages/fes-cli/build/configs/postcss.config.js
+++ b/packages/fes-cli/build/configs/postcss.config.js
@@ -1,7 +1,7 @@
const autoprefixer = require('autoprefixer');
const browsers = require('../helpers/browser');
-module.exports = {
+module.ex = {
plugins: [
autoprefixer({ browsers })
]
diff --git a/packages/fes-cli/build/configs/webpack.config.js b/packages/fes-cli/build/configs/webpack.config.js
index c0df21b5..978edba0 100644
--- a/packages/fes-cli/build/configs/webpack.config.js
+++ b/packages/fes-cli/build/configs/webpack.config.js
@@ -2,7 +2,7 @@ const path = require('path');
const fs = require('fs');
const merge = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
-const VueLoaderPlugin = require('vue-loader/lib/plugin');
+const { VueLoaderPlugin } = require('vue-loader');
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const FriendlyErrorsPlugin = require('@soda/friendly-errors-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
@@ -27,7 +27,7 @@ function handleGzipCompress(compress) {
module.exports = function webpackConfig(configs, webpack, mode) {
let template = path.resolve(
configs.folders.PROJECT_DIR,
- './src/index.html'
+ './publish/index.html'
);
if (!fs.existsSync(template)) {
template = path.resolve(configs.folders.FES_DIR, './src/index.html');
@@ -44,10 +44,10 @@ module.exports = function webpackConfig(configs, webpack, mode) {
]
];
const plugins = [
+ [require.resolve('@vue/babel-plugin-jsx')],
[
require.resolve('@babel/plugin-transform-runtime'), {
- corejs: 3,
- proposals: true
+ corejs: 3
}
],
require.resolve('@babel/plugin-proposal-object-rest-spread'),
@@ -96,21 +96,16 @@ module.exports = function webpackConfig(configs, webpack, mode) {
entry: {
app: [
- path.resolve(configs.folders.FES_DIR, './src/app.js')
+ path.resolve(configs.folders.PROJECT_DIR, './src/app.js')
]
},
resolve: {
- extensions: ['.js', '.fes', '.vue', '.json'],
+ extensions: ['.js', '.jsx', '.vue', '.json'],
alias: {
projectRoot: configs.folders.PROJECT_DIR,
'@': path.resolve(configs.folders.PROJECT_DIR, 'src'),
- '@@': path.resolve(configs.folders.FES_DIR, 'src'),
- assets: path.resolve(
- configs.folders.PROJECT_DIR,
- './src/assets/'
- ),
- vue$: 'vue/dist/vue.esm.js'
+ assets: path.resolve(configs.folders.PROJECT_DIR, './src/assets/')
}
},
@@ -128,7 +123,7 @@ module.exports = function webpackConfig(configs, webpack, mode) {
/* config.module.rule('vue') */
{
- test: /\.vue|fes$/,
+ test: /\.vue$/,
use: [
{
loader: require.resolve('cache-loader'),
@@ -139,10 +134,9 @@ module.exports = function webpackConfig(configs, webpack, mode) {
{
loader: require.resolve('vue-loader'),
options: {
- compilerOptions: {
- preserveWhitespace: false
- },
- cacheDirectory: path.resolve(configs.folders.PROJECT_DIR, 'node_modules/.cache/vue-loader')
+ shadowMode: true,
+ cacheDirectory: path.resolve(configs.folders.PROJECT_DIR, 'node_modules/.cache/vue-loader'),
+ babelParserPlugins: ['jsx', 'classProperties', 'decorators-legacy']
}
}
]
@@ -288,7 +282,18 @@ module.exports = function webpackConfig(configs, webpack, mode) {
/* config.module.rule('js') */
{
test: /\.m?jsx?$/,
- exclude: /(node_modules|bower_components)/,
+ include(filePath) {
+ if (filePath.startsWith(path.resolve(process.cwd(), 'src'))) {
+ return true;
+ }
+ if (/fes-core.?src/.test(filePath)) {
+ return true;
+ }
+ if (/fes-plugin-[a-z-]+.?(src|index)/.test(filePath)) {
+ return true;
+ }
+ return false;
+ },
use: [
{
loader: require.resolve('cache-loader'),
@@ -324,10 +329,10 @@ module.exports = function webpackConfig(configs, webpack, mode) {
/* config.plugin('define') */
new webpack.DefinePlugin({
- 'process.privateFesEnv': {
- env: `"${configs.env}"`
- },
+ __VUE_OPTIONS_API__: true,
+ __VUE_PROD_DEVTOOLS__: false,
'process.env': {
+ // NODE_ENV: isDev ? 'development' : 'production',
env: JSON.stringify(configs.env),
command: JSON.stringify(configs.command)
}
@@ -427,7 +432,21 @@ module.exports = function webpackConfig(configs, webpack, mode) {
baseConfig.optimization = {
minimizer: [
new TerserPlugin({
+ test: /\.m?js(\?.*)?$/i,
+ chunkFilter: () => true,
+ warningsFilter: () => true,
+ extractComments: false,
+ sourceMap: true,
+ cache: true,
+ cacheKeys: defaultCacheKeys => defaultCacheKeys,
+ parallel: true,
+ include: undefined,
+ exclude: undefined,
+ minify: undefined,
terserOptions: {
+ output: {
+ comments: /^\**!|@preserve|@license|@cc_on/i
+ },
compress: {
arrows: false,
collapse_vars: false,
@@ -456,11 +475,7 @@ module.exports = function webpackConfig(configs, webpack, mode) {
mangle: {
safari10: true
}
- },
- sourceMap: true,
- cache: true,
- parallel: true,
- extractComments: false
+ }
})
],
splitChunks: {
diff --git a/packages/fes-cli/build/helpers/config.js b/packages/fes-cli/build/helpers/config.js
index 26d75a91..c9973efa 100644
--- a/packages/fes-cli/build/helpers/config.js
+++ b/packages/fes-cli/build/helpers/config.js
@@ -1,6 +1,5 @@
const path = require('path');
const fs = require('fs');
-const log = require('./log');
function generateConfig(command, env) {
// cli目录
@@ -21,10 +20,7 @@ function generateConfig(command, env) {
const config = {
command,
env,
- ports: {
- server: 5000,
- liveReload: 35729
- },
+ port: 5000,
projectName,
folders: {
CLI_DIR,
@@ -37,28 +33,9 @@ function generateConfig(command, env) {
PROJECT_CPN_DIR
}
};
-
- if (fs.existsSync(fesConfigFile)) {
- try {
- // eslint-disable-next-line
- const fesCofig = require(path.join(config.folders.PROJECT_DIR, 'fes.config.js'));
- config.CDN = fesCofig.env[config.env].cdn;
- config.needCDN = !!config.CDN;
- config.compress = fesCofig.compress;
- config.lazyRouter = fesCofig.lazyRouter;
- } catch (e) {
- config.needCDN = false;
- }
- }
-
- if (!config.needCDN) {
- if (config.command === 'dev' || config.command === 'build') {
- log.warn('项目没有配置cdn,打包之后将不会请求cdn的地址,请开发者注意!!');
- }
- }
-
- return config;
+ // eslint-disable-next-line
+ const fesCofig = require(fesConfigFile);
+ return Object.assign({}, config, fesCofig);
}
-
module.exports = generateConfig;
diff --git a/packages/fes-cli/build/helpers/createDevServer.js b/packages/fes-cli/build/helpers/createDevServer.js
index e193ee4a..ff14e85e 100644
--- a/packages/fes-cli/build/helpers/createDevServer.js
+++ b/packages/fes-cli/build/helpers/createDevServer.js
@@ -2,7 +2,7 @@ const
http = require('http');
const webpack = require('webpack');
const express = require('express');
-const opn = require('opn');
+const open = require('open');
const path = require('path');
const webpackHotMiddleware = require('webpack-hot-middleware');
const webpackDevMiddleware = require('webpack-dev-middleware');
@@ -43,7 +43,7 @@ module.exports = function createDevServer(port, defaultConfig) {
// 初始化Mock数据
initMock(app);
- opn(`http://localhost:${port}`);
+ defaultConfig.open && open(`http://localhost:${port}`);
http.createServer(app).listen(port);
};
diff --git a/packages/fes-cli/build/mock/init.js b/packages/fes-cli/build/mock/init.js
index 664ddbb4..ba75760a 100644
--- a/packages/fes-cli/build/mock/init.js
+++ b/packages/fes-cli/build/mock/init.js
@@ -14,19 +14,22 @@ const log = require('../helpers/log');
const main = {
init(app, argv, cwd) {
- this.app = app;
- this.argv = argv;
- this.cwd = cwd;
+ const defaultCgiMockFile = path.join(process.cwd(), 'mock.js');
+ if (fs.existsSync(defaultCgiMockFile)) {
+ this.app = app;
+ this.argv = argv;
+ this.cwd = cwd;
- app.use(logger('dev'));
- app.use(
- bodyParser.urlencoded({
- extended: false
- })
- );
- app.use(cookieParser());
+ app.use(logger('dev'));
+ app.use(
+ bodyParser.urlencoded({
+ extended: false
+ })
+ );
+ app.use(cookieParser());
- this.customRoute();
+ this.customRoute();
+ }
},
customRoute() {
diff --git a/packages/fes-cli/build/preComplie/components.js b/packages/fes-cli/build/preComplie/components.js
deleted file mode 100644
index cafa05d9..00000000
--- a/packages/fes-cli/build/preComplie/components.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// 全局注册common目录下的组件
-const fs = require('fs');
-const Path = require('path');
-const stringUtil = require('node-plus-string');
-
-function addComp(path, outputCommonDir, components) {
- const dirList = fs.readdirSync(path);
- dirList.forEach((item) => {
- if (fs.statSync(`${path}/${item}`).isFile()
- && item[0] !== '.'
- && ['.fes', '.vue'].indexOf(Path.extname(item)) !== -1) {
- const fileName = Path.basename(item, Path.extname(item));
- const tagName = stringUtil.capitalize(fileName);
- components.push({
- tagName,
- path: Path.resolve(outputCommonDir, item).replace(/\\/g, '\\\\')
- });
- }
- });
-}
-
-module.exports = function genComponents(commonDir, outputCommonDir) {
- const components = [];
- addComp(commonDir, outputCommonDir, components);
- return components;
-};
diff --git a/packages/fes-cli/build/preComplie/route.js b/packages/fes-cli/build/preComplie/route.js
index 15fed007..7ecebd7d 100644
--- a/packages/fes-cli/build/preComplie/route.js
+++ b/packages/fes-cli/build/preComplie/route.js
@@ -19,7 +19,7 @@ function checkHasLayout(path) {
let hasLayout = false;
dirList.forEach((item) => {
if (fs.statSync(`${path}/${item}`).isFile()
- && item[0] !== '.' && ['.fes', '.vue'].indexOf(Path.extname(item)) !== -1
+ && item[0] !== '.' && ['.vue', '.jsx'].indexOf(Path.extname(item)) !== -1
&& Path.basename(item, Path.extname(item)) === 'layout') {
hasLayout = true;
}
@@ -46,7 +46,7 @@ function genRoute(path, prePathUrl, preRoutes) {
}
dirList.forEach((item) => {
if (fs.statSync(`${path}/${item}`).isFile()
- && item[0] !== '.' && ['.fes', '.vue'].indexOf(Path.extname(item)) !== -1) {
+ && item[0] !== '.' && ['.jsx', '.vue'].indexOf(Path.extname(item)) !== -1) {
const fileName = Path.basename(item, Path.extname(item));
const preRouteName = path.slice(pagesDir.length + 1);
let routePath = Path.posix.join(preRouteUrl, (fileName === 'index' ? '' : fileName.replace(/@/g, ':')));
diff --git a/packages/fes-cli/build/tasks/build.js b/packages/fes-cli/build/tasks/build.js
index 8c55c893..2e808a8c 100644
--- a/packages/fes-cli/build/tasks/build.js
+++ b/packages/fes-cli/build/tasks/build.js
@@ -3,12 +3,10 @@ const log = require('../helpers/log');
const createProdConfig = require('../configs/webpack.config');
const generateRoute = require('./route');
-const generateComponent = require('./components');
function startBuild(config) {
try {
generateRoute(config);
- generateComponent(config);
const webpackConfig = createProdConfig(config, webpack, 'build');
webpack(webpackConfig, (err) => {
if (err) {
diff --git a/packages/fes-cli/build/tasks/components.js b/packages/fes-cli/build/tasks/components.js
deleted file mode 100644
index b9e6189a..00000000
--- a/packages/fes-cli/build/tasks/components.js
+++ /dev/null
@@ -1,45 +0,0 @@
-const render = require('json-templater/string');
-const path = require('path');
-const endOfLine = require('os').EOL;
-const fs = require('fs-extra');
-const getCommonComponent = require('../preComplie/components');
-
-function generateComponent(config) {
- const OUTPUT_PATH = path.resolve(config.folders.PROJECT_CACHE_DIR, 'commonComp.js');
- const IMPORT_TEMPLATE = 'import {{name}} from \'{{path}}\';';
- const LIST_TEMPLATE = ' {{name}}';
-
- const MAIN_TEMPLATE = `
-/**
-* 全局组件配置输出
-*/
-{{include}}
-
-export default {
-{{list}}
-};
-`;
-
- const components = getCommonComponent(config.folders.PROJECT_CPN_DIR, config.folders.PROJECT_CPN_DIR);
-
- const componentsTemplate = [];
- const listTemplate = [];
- components.forEach((item) => {
- componentsTemplate.push(render(IMPORT_TEMPLATE, {
- name: item.tagName,
- path: item.path
- }));
- listTemplate.push(render(LIST_TEMPLATE, {
- name: item.tagName
- }));
- });
-
- const template = render(MAIN_TEMPLATE, {
- include: componentsTemplate.join(endOfLine),
- list: listTemplate.join(`,${endOfLine}`)
- });
-
- fs.outputFileSync(OUTPUT_PATH, template);
-}
-
-module.exports = generateComponent;
diff --git a/packages/fes-cli/build/tasks/dev.js b/packages/fes-cli/build/tasks/dev.js
index d389a598..72101b1f 100644
--- a/packages/fes-cli/build/tasks/dev.js
+++ b/packages/fes-cli/build/tasks/dev.js
@@ -7,8 +7,6 @@ const log = require('../helpers/log');
const createDevConfig = require('../configs/webpack.config');
const generateRoute = require('./route');
-const generateComponent = require('./components');
-
function routeHandle(config) {
generateRoute(config);
@@ -27,30 +25,12 @@ function routeHandle(config) {
});
}
-function globalComponentHandle(config) {
- generateComponent(config);
- // 监听components变化重新生成组件注入文件
- const compWatcher = chokidar.watch(path.resolve(config.folders.PROJECT_DIR, './src/components'));
- compWatcher.on('ready', () => {
- compWatcher.on('add', (filePath) => {
- if (path.extname(filePath) === '.fes' || path.extname(filePath) === '.vue') {
- generateComponent(config);
- }
- }).on('unlink', (filePath) => {
- if (path.extname(filePath) === '.fes' || path.extname(filePath) === '.vue') {
- generateComponent(config);
- }
- });
- });
-}
-
function startDev(config) {
routeHandle(config);
- globalComponentHandle(config);
const webpackConfig = createDevConfig(config, webpack, 'dev');
if (!webpackConfig) return;
- getPort(config.ports.server)
+ getPort(config.port)
.then((port) => {
log.message(`------------ find port success. port: ${port}`);
createDevServer(port, webpackConfig);
diff --git a/packages/fes-cli/build/tasks/index.js b/packages/fes-cli/build/tasks/index.js
index 9f1fa8d5..56518f8e 100644
--- a/packages/fes-cli/build/tasks/index.js
+++ b/packages/fes-cli/build/tasks/index.js
@@ -1,6 +1,5 @@
const init = require('./init.js');
const route = require('./route.js');
-const components = require('./components.js');
const build = require('./build.js');
const dev = require('./dev.js');
const update = require('./update.js');
@@ -8,7 +7,6 @@ const update = require('./update.js');
module.exports = {
init,
route,
- components,
build,
dev,
update
diff --git a/packages/fes-cli/build/tasks/init.js b/packages/fes-cli/build/tasks/init.js
index 3e40600d..9110ba44 100644
--- a/packages/fes-cli/build/tasks/init.js
+++ b/packages/fes-cli/build/tasks/init.js
@@ -13,9 +13,9 @@ function createProject(config, projectName) {
log.error('该项目已存在,请重新输入!');
return Promise.reject();
}
- return new Promise((resolve, reject) => {
+ return new Promise((resolve) => {
const productDir = `${config.folders.PROJECT_DIR}/${projectName}`;
- const stdout = execSync(`npm pack @webank/fes-template`, { encoding: 'utf8', stdio: [null]});
+ const stdout = execSync('npm pack @webank/fes-template', { encoding: 'utf8', stdio: [null] });
const filePath = path.resolve(config.folders.PROJECT_DIR, stdout.replace('\n', ''));
fs.mkdirSync(projectDir);
fs.createReadStream(filePath).pipe(
diff --git a/packages/fes-cli/package-lock.json b/packages/fes-cli/package-lock.json
index 3804d891..ffef567b 100644
--- a/packages/fes-cli/package-lock.json
+++ b/packages/fes-cli/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@webank/fes-cli",
- "version": "0.2.3",
+ "version": "0.2.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@@ -480,6 +480,14 @@
"@babel/helper-plugin-utils": "^7.8.0"
}
},
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz",
+ "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==",
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
"@babel/plugin-syntax-logical-assignment-operators": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
@@ -1128,48 +1136,105 @@
}
}
},
- "@vue/component-compiler-utils": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz",
- "integrity": "sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw==",
+ "@vue/babel-helper-vue-transform-on": {
+ "version": "1.0.0-rc.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0-rc.2.tgz",
+ "integrity": "sha512-1+7CwjQ0Kasml6rHoNQUmbISwqLNNfFVBUcZl6QBremUl296ZmLrVQPqJP5pyAAWjZke5bpI1hlj+LVVuT7Jcg=="
+ },
+ "@vue/babel-plugin-jsx": {
+ "version": "1.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0-rc.3.tgz",
+ "integrity": "sha512-/Ibq0hoKsidnHWPhgRpjcjYhYcHpqEm2fiKVAPO88OXZNHGwaGgS4yXkC6TDEvlZep4mBDo+2S5T81wpbVh90Q==",
"requires": {
- "consolidate": "^0.15.1",
- "hash-sum": "^1.0.2",
- "lru-cache": "^4.1.2",
- "merge-source-map": "^1.1.0",
- "postcss": "^7.0.14",
- "postcss-selector-parser": "^6.0.2",
- "prettier": "^1.18.2",
- "source-map": "~0.6.1",
- "vue-template-es2015-compiler": "^1.9.0"
+ "@babel/helper-module-imports": "^7.0.0",
+ "@babel/plugin-syntax-jsx": "^7.0.0",
+ "@babel/traverse": "^7.0.0",
+ "@babel/types": "^7.0.0",
+ "@vue/babel-helper-vue-transform-on": "^1.0.0-rc.2",
+ "camelcase": "^6.0.0",
+ "html-tags": "^3.1.0",
+ "svg-tags": "^1.0.0"
+ },
+ "dependencies": {
+ "camelcase": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.0.0.tgz",
+ "integrity": "sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w=="
+ }
+ }
+ },
+ "@vue/compiler-core": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.0.tgz",
+ "integrity": "sha512-XqPC7vdv4rFE77S71oCHmT1K4Ks3WE2Gi6Lr4B5wn0Idmp+NyQQBUHsCNieMDRiEpgtJrw+yOHslrsV0AfAsfQ==",
+ "requires": {
+ "@babel/parser": "^7.11.5",
+ "@babel/types": "^7.11.5",
+ "@vue/shared": "3.0.0",
+ "estree-walker": "^2.0.1",
+ "source-map": "^0.6.1"
},
"dependencies": {
- "hash-sum": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz",
- "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ="
- },
- "lru-cache": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
- "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
- "requires": {
- "pseudomap": "^1.0.2",
- "yallist": "^2.1.2"
- }
- },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
- },
- "yallist": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
- "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI="
}
}
},
+ "@vue/compiler-dom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.0.tgz",
+ "integrity": "sha512-ukDEGOP8P7lCPyStuM3F2iD5w2QPgUu2xwCW2XNeqPjFKIlR2xMsWjy4raI/cLjN6W16GtlMFaZdK8tLj5PRog==",
+ "requires": {
+ "@vue/compiler-core": "3.0.0",
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "@vue/compiler-sfc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.0.tgz",
+ "integrity": "sha512-1Bn4L5jNRm6tlb79YwqYUGGe+Yc9PRoRSJi67NJX6icdhf84+tRMtESbx1zCLL9QixQXu2+7aLkXHxvh4RpqAA==",
+ "requires": {
+ "@babel/parser": "^7.11.5",
+ "@babel/types": "^7.11.5",
+ "@vue/compiler-core": "3.0.0",
+ "@vue/compiler-dom": "3.0.0",
+ "@vue/compiler-ssr": "3.0.0",
+ "@vue/shared": "3.0.0",
+ "consolidate": "^0.16.0",
+ "estree-walker": "^2.0.1",
+ "hash-sum": "^2.0.0",
+ "lru-cache": "^5.1.1",
+ "magic-string": "^0.25.7",
+ "merge-source-map": "^1.1.0",
+ "postcss": "^7.0.32",
+ "postcss-modules": "^3.2.2",
+ "postcss-selector-parser": "^6.0.2",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ }
+ }
+ },
+ "@vue/compiler-ssr": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.0.0.tgz",
+ "integrity": "sha512-Er41F9ZFyKB3YnNbE6JSTIGCVWve3NAQimgDOk4uP42OnckxBYKGBTutDeFNeqUZBMu/9vRHYrxlGFC9Z5jBVQ==",
+ "requires": {
+ "@vue/compiler-dom": "3.0.0",
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "@vue/shared": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.0.0.tgz",
+ "integrity": "sha512-4XWL/avABGxU2E2ZF1eZq3Tj7fvksCMssDZUHOykBIMmh5d+KcAnQMC5XHMhtnA0NAvktYsA2YpdsVwVmhWzvA=="
+ },
"@webassemblyjs/ast": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
@@ -2692,11 +2757,11 @@
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
},
"consolidate": {
- "version": "0.15.1",
- "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz",
- "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==",
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.16.0.tgz",
+ "integrity": "sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==",
"requires": {
- "bluebird": "^3.1.1"
+ "bluebird": "^3.7.2"
}
},
"constants-browserify": {
@@ -3639,6 +3704,11 @@
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
},
+ "estree-walker": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.1.tgz",
+ "integrity": "sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg=="
+ },
"esutils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
@@ -4482,6 +4552,14 @@
"globule": "^1.0.0"
}
},
+ "generic-names": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz",
+ "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==",
+ "requires": {
+ "loader-utils": "^1.1.0"
+ }
+ },
"gensync": {
"version": "1.0.0-beta.1",
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz",
@@ -4840,6 +4918,11 @@
}
}
},
+ "html-tags": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz",
+ "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg=="
+ },
"html-webpack-plugin": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz",
@@ -4966,6 +5049,11 @@
"safer-buffer": ">= 2.1.2 < 3"
}
},
+ "icss-replace-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
+ "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0="
+ },
"icss-utils": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
@@ -5167,6 +5255,11 @@
"resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
"integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE="
},
+ "is-docker": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz",
+ "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw=="
+ },
"is-dotfile": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz",
@@ -5614,6 +5707,11 @@
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
},
+ "lodash.camelcase": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
+ "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY="
+ },
"lodash.clonedeep": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
@@ -5666,6 +5764,14 @@
}
}
},
+ "magic-string": {
+ "version": "0.25.7",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz",
+ "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==",
+ "requires": {
+ "sourcemap-codec": "^1.4.4"
+ }
+ },
"make-dir": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
@@ -6494,13 +6600,23 @@
"wrappy": "1"
}
},
- "opn": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz",
- "integrity": "sha1-erwi5kTf9jsKltWrfyeQwPAavJU=",
+ "open": {
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/open/-/open-7.3.0.tgz",
+ "integrity": "sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw==",
"requires": {
- "object-assign": "^4.0.1",
- "pinkie-promise": "^2.0.0"
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ },
+ "dependencies": {
+ "is-wsl": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+ "requires": {
+ "is-docker": "^2.0.0"
+ }
+ }
}
},
"os-browserify": {
@@ -7087,6 +7203,22 @@
}
}
},
+ "postcss-modules": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-3.2.2.tgz",
+ "integrity": "sha512-JQ8IAqHELxC0N6tyCg2UF40pACY5oiL6UpiqqcIFRWqgDYO8B0jnxzoQ0EOpPrWXvcpu6BSbQU/3vSiq7w8Nhw==",
+ "requires": {
+ "generic-names": "^2.0.1",
+ "icss-replace-symbols": "^1.1.0",
+ "lodash.camelcase": "^4.3.0",
+ "postcss": "^7.0.32",
+ "postcss-modules-extract-imports": "^2.0.0",
+ "postcss-modules-local-by-default": "^3.0.2",
+ "postcss-modules-scope": "^2.2.0",
+ "postcss-modules-values": "^3.0.0",
+ "string-hash": "^1.1.1"
+ }
+ },
"postcss-modules-extract-imports": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
@@ -7369,12 +7501,6 @@
"resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
"integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks="
},
- "prettier": {
- "version": "1.19.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
- "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==",
- "optional": true
- },
"pretty-error": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz",
@@ -8675,6 +8801,11 @@
"resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
"integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM="
},
+ "sourcemap-codec": {
+ "version": "1.4.8",
+ "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
+ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="
+ },
"spawn-sync": {
"version": "1.0.15",
"resolved": "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz",
@@ -8831,6 +8962,11 @@
"resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
"integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="
},
+ "string-hash": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
+ "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs="
+ },
"string-replace-loader": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/string-replace-loader/-/string-replace-loader-2.3.0.tgz",
@@ -9017,6 +9153,11 @@
"has-flag": "^3.0.0"
}
},
+ "svg-tags": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz",
+ "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q="
+ },
"svgo": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
@@ -9725,27 +9866,25 @@
"resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
"integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="
},
- "vue-hot-reload-api": {
- "version": "2.3.4",
- "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz",
- "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog=="
- },
"vue-loader": {
- "version": "15.9.3",
- "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.3.tgz",
- "integrity": "sha512-Y67VnGGgVLH5Voostx8JBZgPQTlDQeOVBLOEsjc2cXbCYBKexSKEpOA56x0YZofoDOTszrLnIShyOX1p9uCEHA==",
+ "version": "16.0.0-beta.8",
+ "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.8.tgz",
+ "integrity": "sha512-oouKUQWWHbSihqSD7mhymGPX1OQ4hedzAHyvm8RdyHh6m3oIvoRF+NM45i/bhNOlo8jCnuJhaSUf/6oDjv978g==",
"requires": {
- "@vue/component-compiler-utils": "^3.1.0",
- "hash-sum": "^1.0.2",
- "loader-utils": "^1.1.0",
- "vue-hot-reload-api": "^2.3.0",
- "vue-style-loader": "^4.1.0"
+ "chalk": "^4.1.0",
+ "hash-sum": "^2.0.0",
+ "loader-utils": "^2.0.0"
},
"dependencies": {
- "hash-sum": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz",
- "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ="
+ "loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
}
}
},
@@ -9774,11 +9913,6 @@
"he": "^1.1.0"
}
},
- "vue-template-es2015-compiler": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz",
- "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw=="
- },
"watchpack": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.4.tgz",
diff --git a/packages/fes-cli/package.json b/packages/fes-cli/package.json
index 95a86b5f..36084f35 100644
--- a/packages/fes-cli/package.json
+++ b/packages/fes-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@webank/fes-cli",
- "version": "0.2.3",
+ "version": "0.2.2",
"description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true,
"scripts": {
@@ -35,6 +35,9 @@
"@babel/runtime-corejs3": "^7.11.2",
"@intervolga/optimize-cssnano-plugin": "^1.0.6",
"@soda/friendly-errors-webpack-plugin": "^1.7.1",
+ "@vue/babel-plugin-jsx": "^1.0.0-rc.3",
+ "@vue/compiler-sfc": "^3.0.0",
+ "@webank/fes-core": "^0.2.1",
"autoprefixer": "^8.1.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.5.2",
@@ -72,7 +75,7 @@
"node-sass": "^4.14.1",
"normalize-path": "^1.0.0",
"on-finished": "^2.3.0",
- "opn": "^4.0.2",
+ "open": "^7.3.0",
"path": "^0.12.7",
"postcss": "^7.0.32",
"postcss-loader": "^4.0.1",
@@ -91,7 +94,7 @@
"terser-webpack-plugin": "^2.2.1",
"thread-loader": "^2.1.3",
"url-loader": "^2.2.0",
- "vue-loader": "^15.7.2",
+ "vue-loader": "^16.0.0-beta.8",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
diff --git a/packages/fes-core/LICENSE b/packages/fes-core/LICENSE
deleted file mode 100644
index 0978fbf7..00000000
--- a/packages/fes-core/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2020-present webank
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file
diff --git a/packages/fes-core/README.md b/packages/fes-core/README.md
deleted file mode 100644
index b797ffd8..00000000
--- a/packages/fes-core/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# fes-core
-`fes-core`是框架核心,对Vue的API做了一些增强。建议先阅读学习[Vue2.0](https://cn.vuejs.org/v2/guide/)。
-
-## 安装:
-npm install @webank/fes-core --save
-
-## 文档
-详细使用请查看[文档](https://webankfintech.github.io/fes.js/)
diff --git a/packages/fes-core/package-lock.json b/packages/fes-core/package-lock.json
new file mode 100644
index 00000000..29355878
--- /dev/null
+++ b/packages/fes-core/package-lock.json
@@ -0,0 +1,446 @@
+{
+ "name": "@webank/fes-core",
+ "version": "0.2.1",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
+ },
+ "@babel/parser": {
+ "version": "7.11.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.5.tgz",
+ "integrity": "sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q=="
+ },
+ "@babel/runtime-corejs3": {
+ "version": "7.11.2",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz",
+ "integrity": "sha512-qh5IR+8VgFz83VBa6OkaET6uN/mJOhHONuy3m1sgF0CV6mXdPSEBdA7e1eUbVvyNtANjMbg22JUv71BaDXLY6A==",
+ "requires": {
+ "core-js-pure": "^3.0.0",
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "@babel/types": {
+ "version": "7.11.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz",
+ "integrity": "sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@vue/compiler-core": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.0.tgz",
+ "integrity": "sha512-XqPC7vdv4rFE77S71oCHmT1K4Ks3WE2Gi6Lr4B5wn0Idmp+NyQQBUHsCNieMDRiEpgtJrw+yOHslrsV0AfAsfQ==",
+ "requires": {
+ "@babel/parser": "^7.11.5",
+ "@babel/types": "^7.11.5",
+ "@vue/shared": "3.0.0",
+ "estree-walker": "^2.0.1",
+ "source-map": "^0.6.1"
+ }
+ },
+ "@vue/compiler-dom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.0.tgz",
+ "integrity": "sha512-ukDEGOP8P7lCPyStuM3F2iD5w2QPgUu2xwCW2XNeqPjFKIlR2xMsWjy4raI/cLjN6W16GtlMFaZdK8tLj5PRog==",
+ "requires": {
+ "@vue/compiler-core": "3.0.0",
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "@vue/compiler-sfc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.0.tgz",
+ "integrity": "sha512-1Bn4L5jNRm6tlb79YwqYUGGe+Yc9PRoRSJi67NJX6icdhf84+tRMtESbx1zCLL9QixQXu2+7aLkXHxvh4RpqAA==",
+ "requires": {
+ "@babel/parser": "^7.11.5",
+ "@babel/types": "^7.11.5",
+ "@vue/compiler-core": "3.0.0",
+ "@vue/compiler-dom": "3.0.0",
+ "@vue/compiler-ssr": "3.0.0",
+ "@vue/shared": "3.0.0",
+ "consolidate": "^0.16.0",
+ "estree-walker": "^2.0.1",
+ "hash-sum": "^2.0.0",
+ "lru-cache": "^5.1.1",
+ "magic-string": "^0.25.7",
+ "merge-source-map": "^1.1.0",
+ "postcss": "^7.0.32",
+ "postcss-modules": "^3.2.2",
+ "postcss-selector-parser": "^6.0.2",
+ "source-map": "^0.6.1"
+ }
+ },
+ "@vue/compiler-ssr": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.0.0.tgz",
+ "integrity": "sha512-Er41F9ZFyKB3YnNbE6JSTIGCVWve3NAQimgDOk4uP42OnckxBYKGBTutDeFNeqUZBMu/9vRHYrxlGFC9Z5jBVQ==",
+ "requires": {
+ "@vue/compiler-dom": "3.0.0",
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "@vue/reactivity": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.0.tgz",
+ "integrity": "sha512-mEGkztGQrAPZRhV7C6PorrpT3+NtuA4dY2QjMzzrW31noKhssWTajRZTwpLF39NBRrF5UU6cp9+1I0FfavMgEQ==",
+ "requires": {
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "@vue/runtime-core": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.0.tgz",
+ "integrity": "sha512-3ABMLeA0ZbeVNLbGGLXr+pNUwqXILOqz8WCVGfDWwQb+jW114Cm8djOHVVDoqdvRETQvDf8yHSUmpKHZpQuTkA==",
+ "requires": {
+ "@vue/reactivity": "3.0.0",
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "@vue/runtime-dom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.0.tgz",
+ "integrity": "sha512-f312n5w9gK6mVvkDSj6/Xnot1XjlKXzFBYybmoy6ahAVC8ExbQ+LOWti1IZM/adU8VMNdKaw7Q53Hxz3y5jX8g==",
+ "requires": {
+ "@vue/runtime-core": "3.0.0",
+ "@vue/shared": "3.0.0",
+ "csstype": "^2.6.8"
+ }
+ },
+ "@vue/shared": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.0.0.tgz",
+ "integrity": "sha512-4XWL/avABGxU2E2ZF1eZq3Tj7fvksCMssDZUHOykBIMmh5d+KcAnQMC5XHMhtnA0NAvktYsA2YpdsVwVmhWzvA=="
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
+ },
+ "bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ },
+ "consolidate": {
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.16.0.tgz",
+ "integrity": "sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==",
+ "requires": {
+ "bluebird": "^3.7.2"
+ }
+ },
+ "core-js-pure": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.5.tgz",
+ "integrity": "sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA=="
+ },
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
+ },
+ "csstype": {
+ "version": "2.6.13",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.13.tgz",
+ "integrity": "sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A=="
+ },
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+ },
+ "estree-walker": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.1.tgz",
+ "integrity": "sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg=="
+ },
+ "generic-names": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz",
+ "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==",
+ "requires": {
+ "loader-utils": "^1.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+ },
+ "hash-sum": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz",
+ "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg=="
+ },
+ "icss-replace-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
+ "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0="
+ },
+ "icss-utils": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
+ "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
+ "requires": {
+ "postcss": "^7.0.14"
+ }
+ },
+ "indexes-of": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
+ "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc="
+ },
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ }
+ },
+ "lodash": {
+ "version": "4.17.20",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
+ "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
+ },
+ "lodash.camelcase": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
+ "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY="
+ },
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "magic-string": {
+ "version": "0.25.7",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz",
+ "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==",
+ "requires": {
+ "sourcemap-codec": "^1.4.4"
+ }
+ },
+ "merge-source-map": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz",
+ "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==",
+ "requires": {
+ "source-map": "^0.6.1"
+ }
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
+ },
+ "postcss": {
+ "version": "7.0.35",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
+ "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
+ "requires": {
+ "chalk": "^2.4.2",
+ "source-map": "^0.6.1",
+ "supports-color": "^6.1.0"
+ }
+ },
+ "postcss-modules": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-3.2.2.tgz",
+ "integrity": "sha512-JQ8IAqHELxC0N6tyCg2UF40pACY5oiL6UpiqqcIFRWqgDYO8B0jnxzoQ0EOpPrWXvcpu6BSbQU/3vSiq7w8Nhw==",
+ "requires": {
+ "generic-names": "^2.0.1",
+ "icss-replace-symbols": "^1.1.0",
+ "lodash.camelcase": "^4.3.0",
+ "postcss": "^7.0.32",
+ "postcss-modules-extract-imports": "^2.0.0",
+ "postcss-modules-local-by-default": "^3.0.2",
+ "postcss-modules-scope": "^2.2.0",
+ "postcss-modules-values": "^3.0.0",
+ "string-hash": "^1.1.1"
+ }
+ },
+ "postcss-modules-extract-imports": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
+ "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
+ "requires": {
+ "postcss": "^7.0.5"
+ }
+ },
+ "postcss-modules-local-by-default": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz",
+ "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==",
+ "requires": {
+ "icss-utils": "^4.1.1",
+ "postcss": "^7.0.32",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.1.0"
+ }
+ },
+ "postcss-modules-scope": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
+ "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
+ "requires": {
+ "postcss": "^7.0.6",
+ "postcss-selector-parser": "^6.0.0"
+ }
+ },
+ "postcss-modules-values": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
+ "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
+ "requires": {
+ "icss-utils": "^4.0.0",
+ "postcss": "^7.0.6"
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz",
+ "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==",
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "postcss-value-parser": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
+ "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ=="
+ },
+ "regenerator-runtime": {
+ "version": "0.13.7",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
+ "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ },
+ "sourcemap-codec": {
+ "version": "1.4.8",
+ "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
+ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="
+ },
+ "string-hash": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
+ "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs="
+ },
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
+ },
+ "uniq": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
+ "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8="
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ },
+ "vue": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.0.0.tgz",
+ "integrity": "sha512-ZMrAARZ32sGIaYKr7Fk2GZEBh/VhulSrGxcGBiAvbN4fhjl3tuJyNFbbbLFqGjndbLoBW66I2ECq8ICdvkKdJw==",
+ "requires": {
+ "@vue/compiler-dom": "3.0.0",
+ "@vue/runtime-dom": "3.0.0",
+ "@vue/shared": "3.0.0"
+ }
+ },
+ "vue-router": {
+ "version": "4.0.0-beta.12",
+ "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-beta.12.tgz",
+ "integrity": "sha512-prbqAs2hSlKGt3U/Iyq8G62q/oprwmEd//a6x5M1uqP1aZxwjq0s27ZG8hfUSOOPB7SYg4NOydwy6zi/b3S2Ww=="
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
+ }
+ }
+}
diff --git a/packages/fes-core/package.json b/packages/fes-core/package.json
index 9d0f3d06..a4237262 100644
--- a/packages/fes-core/package.json
+++ b/packages/fes-core/package.json
@@ -1,10 +1,11 @@
{
"name": "@webank/fes-core",
- "version": "0.2.3",
+ "version": "0.2.1",
"description": "一个好用的前端管理台快速开发框架",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
+ "main": "src/index.js",
"author": "harrywan,qlin",
"repository": {
"type": "git",
@@ -18,15 +19,13 @@
"easy",
"strong"
],
- "dependencies": {
- "axios": "^0.16.2",
- "lodash": "^4.17.15",
- "vue": "^2.6.10",
- "vue-i18n": "^8.4.0",
- "vue-router": "^2.6.0",
- "vue-template-compiler": "^2.6.10"
- },
"peerDependencies": {
- "@webank/fes-ui": "^0.1.0"
+ "vue": "^3.0.0"
+ },
+ "dependencies": {
+ "@babel/runtime-corejs3": "^7.11.2",
+ "@vue/compiler-sfc": "^3.0.0",
+ "vue": "^3.0.0",
+ "vue-router": "^4.0.0-beta.12"
}
}
diff --git a/packages/fes-core/src/DefaultLayout.js b/packages/fes-core/src/DefaultLayout.js
new file mode 100644
index 00000000..b8ada01e
--- /dev/null
+++ b/packages/fes-core/src/DefaultLayout.js
@@ -0,0 +1,3 @@
+import { defineComponent } from 'vue';
+
+export default defineComponent(() => () => (