张恒

更新依赖,添加新的全局文件夹变量对应文档中dll调用

......@@ -2,12 +2,14 @@
process.env.BABEL_ENV = 'main'
const os = require('os')
const path = require('path')
const { dependencies } = require('../package.json')
const webpack = require('webpack')
const MinifyPlugin = require("babel-minify-webpack-plugin");
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const HappyPack = require('happypack')
const HappyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length })
function resolve(dir) {
return path.join(__dirname, '..', dir)
......@@ -35,7 +37,7 @@ let mainConfig = {
// },
{
test: /\.js$/,
use: 'babel-loader',
use: 'happypack/loader?id=MainHappyBabel',
exclude: /node_modules/
},
{
......@@ -57,6 +59,16 @@ let mainConfig = {
new webpack.NoEmitOnErrorsPlugin(),
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: resolve('dist/electron')
}),
new HappyPack({
id: "MainHappyBabel",
loaders: [{
loader: 'babel-loader',
options: {
cacheDirectory: true
}
}],
threadPool: HappyThreadPool
})
],
resolve: {
......
......@@ -2,6 +2,7 @@
process.env.BABEL_ENV = 'renderer'
const os = require('os')
const path = require('path')
const { dependencies } = require('../package.json')
const webpack = require('webpack')
......@@ -12,7 +13,10 @@ const CopyWebpackPlugin = require('copy-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const TerserPlugin = require('terser-webpack-plugin');
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
const { VueLoaderPlugin } = require('vue-loader')
const HappyPack = require('happypack')
const HappyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length })
function resolve(dir) {
return path.join(__dirname, '..', dir)
......@@ -24,7 +28,7 @@ function resolve(dir) {
* that provide pure *.vue files that need compiling
* https://simulatedgreg.gitbooks.io/electron-vue/content/en/webpack-configurations.html#white-listing-externals
*/
let whiteListedModules = ['vue',"element-ui"]
let whiteListedModules = ['vue', "element-ui"]
let rendererConfig = {
devtool: '#cheap-module-eval-source-map',
......@@ -69,7 +73,7 @@ let rendererConfig = {
},
{
test: /\.js$/,
use: 'babel-loader',
use: 'happypack/loader?id=HappyRendererBabel',
exclude: /node_modules/
},
{
......@@ -164,7 +168,18 @@ let rendererConfig = {
nodeModules: false
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin()
new webpack.NoEmitOnErrorsPlugin(),
new HardSourceWebpackPlugin(),
new HappyPack({
id: 'HappyRendererBabel',
loaders: [{
loader: 'babel-loader',
options: {
cacheDirectory: true
}
}],
threadPool: HappyThreadPool
}),
],
output: {
filename: '[name].js',
......@@ -187,7 +202,8 @@ let rendererConfig = {
if (process.env.NODE_ENV !== 'production') {
rendererConfig.plugins.push(
new webpack.DefinePlugin({
'__static': `"${path.join(__dirname, '../static').replace(/\\/g, '\\\\')}"`
'__static': `"${path.join(__dirname, '../static').replace(/\\/g, '\\\\')}"`,
'__lib': `"${path.join(__dirname, `../${config.DllFolder}`).replace(/\\/g, '\\\\')}"`
})
)
}
......
......@@ -10,5 +10,6 @@ module.exports = {
port: 9080
},
UseStartupChart: true,
IsUseSysTitle: true
IsUseSysTitle: true,
DllFolder: ''
}
......
......@@ -38,25 +38,25 @@
"dependencies": {
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1580434257623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=",
"dev": true
}
}
},
"@babel/core": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.8.6.tgz",
"integrity": "sha1-J9ffklikXC5oa28YtsZZ5WOqRjY=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.8.7.tgz",
"integrity": "sha1-tpAX0iHM3rIDFFrp2iadcs8QLzs=",
"dev": true,
"requires": {
"@babel/code-frame": "^7.8.3",
"@babel/generator": "^7.8.6",
"@babel/generator": "^7.8.7",
"@babel/helpers": "^7.8.4",
"@babel/parser": "^7.8.6",
"@babel/parser": "^7.8.7",
"@babel/template": "^7.8.6",
"@babel/traverse": "^7.8.6",
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
......@@ -69,7 +69,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -77,12 +77,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -101,7 +101,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -119,7 +119,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -129,9 +129,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -163,9 +163,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -186,7 +186,7 @@
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.1.1.tgz",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz",
"integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=",
"dev": true,
"requires": {
......@@ -195,13 +195,13 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1580434257623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=",
"dev": true
}
......@@ -229,9 +229,9 @@
},
"dependencies": {
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -252,9 +252,9 @@
},
"dependencies": {
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -265,19 +265,19 @@
}
},
"@babel/helper-call-delegate": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-call-delegate/download/@babel/helper-call-delegate-7.8.3.tgz",
"integrity": "sha1-3oJhmJiqYF1AnEK+b/uNcgRXlpI=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/helper-call-delegate/download/@babel/helper-call-delegate-7.8.7.tgz",
"integrity": "sha1-KKJ5wubGIqYjPaVIEn+YB1EyTKs=",
"dev": true,
"requires": {
"@babel/helper-hoist-variables": "^7.8.3",
"@babel/traverse": "^7.8.3",
"@babel/types": "^7.8.3"
"@babel/types": "^7.8.7"
},
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -285,12 +285,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -309,7 +309,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -327,7 +327,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -337,9 +337,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -371,9 +371,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -394,7 +394,7 @@
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.1.1.tgz",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz",
"integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=",
"dev": true,
"requires": {
......@@ -403,20 +403,20 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
}
},
"@babel/helper-compilation-targets": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.8.6.tgz?cache=0&sync_timestamp=1582806123052&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.8.6.tgz",
"integrity": "sha1-AVuF22njo0JA1cK3YfxT65aV8Jw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.8.7.tgz",
"integrity": "sha1-2sHuoVnA5L1G4wm1obBKZrU8Hd4=",
"dev": true,
"requires": {
"@babel/compat-data": "^7.8.6",
"browserslist": "^4.8.5",
"browserslist": "^4.9.1",
"invariant": "^2.2.4",
"levenary": "^1.1.1",
"semver": "^5.5.0"
......@@ -424,7 +424,7 @@
"dependencies": {
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1580434257623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=",
"dev": true
}
......@@ -558,7 +558,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -578,7 +578,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -587,7 +587,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -597,9 +597,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -614,9 +614,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -649,7 +649,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -657,12 +657,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -681,7 +681,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -699,7 +699,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -709,9 +709,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -743,9 +743,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -766,7 +766,7 @@
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.1.1.tgz",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz",
"integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=",
"dev": true,
"requires": {
......@@ -775,7 +775,7 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
......@@ -811,9 +811,9 @@
},
"dependencies": {
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -884,7 +884,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -892,12 +892,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -946,7 +946,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -956,9 +956,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -990,9 +990,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -1058,7 +1058,7 @@
},
"@babel/helper-regex": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.8.3.tgz?cache=0&sync_timestamp=1578951938163&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-regex%2Fdownload%2F%40babel%2Fhelper-regex-7.8.3.tgz",
"integrity": "sha1-E5dyYH1RuT8j7/5yEFsxnSpMaWU=",
"dev": true,
"requires": {
......@@ -1080,7 +1080,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -1088,12 +1088,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -1112,7 +1112,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -1130,7 +1130,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -1140,9 +1140,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -1174,9 +1174,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -1197,7 +1197,7 @@
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.1.1.tgz",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz",
"integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=",
"dev": true,
"requires": {
......@@ -1206,7 +1206,7 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
......@@ -1370,7 +1370,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -1379,7 +1379,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -1389,9 +1389,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -1406,9 +1406,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -1586,7 +1586,7 @@
},
"@babel/helpers": {
"version": "7.8.4",
"resolved": "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.8.4.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.8.4.tgz?cache=0&sync_timestamp=1580388006568&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.8.4.tgz",
"integrity": "sha1-dU6z7nJ8Fl4KJA1sIH3nxFXzb3M=",
"dev": true,
"requires": {
......@@ -1597,7 +1597,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -1605,12 +1605,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -1629,7 +1629,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -1647,7 +1647,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -1657,9 +1657,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -1691,9 +1691,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -1714,7 +1714,7 @@
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.1.1.tgz",
"resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz",
"integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=",
"dev": true,
"requires": {
......@@ -1723,7 +1723,7 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
......@@ -1894,7 +1894,7 @@
},
"@babel/plugin-proposal-object-rest-spread": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.8.3.tgz?cache=0&sync_timestamp=1578956763418&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-object-rest-spread%2Fdownload%2F%40babel%2Fplugin-proposal-object-rest-spread-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.8.3.tgz",
"integrity": "sha1-61rjZhGN3KZ77Vg7U9dVTK2ZUbs=",
"dev": true,
"requires": {
......@@ -2116,7 +2116,7 @@
},
"@babel/plugin-syntax-top-level-await": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.8.3.tgz?cache=0&sync_timestamp=1578951935611&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-top-level-await%2Fdownload%2F%40babel%2Fplugin-syntax-top-level-await-7.8.3.tgz",
"integrity": "sha1-Os3s5pXmsTqvV/wpHRqACVDHE5E=",
"dev": true,
"requires": {
......@@ -2125,7 +2125,7 @@
},
"@babel/plugin-transform-arrow-functions": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.8.3.tgz?cache=0&sync_timestamp=1578951935848&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-arrow-functions%2Fdownload%2F%40babel%2Fplugin-transform-arrow-functions-7.8.3.tgz",
"integrity": "sha1-gndsLtDNnhpJlW2uuJYCTJRzuLY=",
"dev": true,
"requires": {
......@@ -2145,7 +2145,7 @@
},
"@babel/plugin-transform-block-scoped-functions": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.8.3.tgz?cache=0&sync_timestamp=1578951934748&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-block-scoped-functions%2Fdownload%2F%40babel%2Fplugin-transform-block-scoped-functions-7.8.3.tgz",
"integrity": "sha1-Q37sW3mbWFIHIISzrl72boNJ6KM=",
"dev": true,
"requires": {
......@@ -2154,7 +2154,7 @@
},
"@babel/plugin-transform-block-scoping": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.8.3.tgz?cache=0&sync_timestamp=1578951934401&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-block-scoping%2Fdownload%2F%40babel%2Fplugin-transform-block-scoping-7.8.3.tgz",
"integrity": "sha1-l9Ndq2aFekN8FmNYuR0JBQyGjzo=",
"dev": true,
"requires": {
......@@ -2180,7 +2180,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -2188,12 +2188,12 @@
}
},
"@babel/generator": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.6.tgz",
"integrity": "sha1-V635bTcMmmPCQc1xn5ERRoV4U3o=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.8.7.tgz",
"integrity": "sha1-hws895hPUpeZgVKvYlxPPjQUAPc=",
"dev": true,
"requires": {
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
......@@ -2212,7 +2212,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -2242,7 +2242,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -2252,9 +2252,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -2286,9 +2286,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -2326,7 +2326,7 @@
},
"@babel/plugin-transform-computed-properties": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.8.3.tgz?cache=0&sync_timestamp=1578951933993&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-computed-properties%2Fdownload%2F%40babel%2Fplugin-transform-computed-properties-7.8.3.tgz",
"integrity": "sha1-ltDSi3985OtbEguy4OlDNDyG+Bs=",
"dev": true,
"requires": {
......@@ -2335,7 +2335,7 @@
},
"@babel/plugin-transform-destructuring": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.8.3.tgz?cache=0&sync_timestamp=1578951936021&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-destructuring%2Fdownload%2F%40babel%2Fplugin-transform-destructuring-7.8.3.tgz",
"integrity": "sha1-IN372eRnaQaxBW7mCviFkMx6qgs=",
"dev": true,
"requires": {
......@@ -2354,7 +2354,7 @@
},
"@babel/plugin-transform-duplicate-keys": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.8.3.tgz?cache=0&sync_timestamp=1578951935457&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-duplicate-keys%2Fdownload%2F%40babel%2Fplugin-transform-duplicate-keys-7.8.3.tgz",
"integrity": "sha1-jRLfMJqlN/JyiZxWXqF2jihuIfE=",
"dev": true,
"requires": {
......@@ -2392,7 +2392,7 @@
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.8.3.tgz?cache=0&sync_timestamp=1578953126105&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.8.3.tgz",
"integrity": "sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=",
"dev": true,
"requires": {
......@@ -2412,7 +2412,7 @@
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -2421,7 +2421,7 @@
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.8.3.tgz?cache=0&sync_timestamp=1578951935730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.8.3.tgz",
"integrity": "sha1-KPFz0EIj6qpZvB1Dmjg25tEmV5c=",
"dev": true,
"requires": {
......@@ -2431,9 +2431,9 @@
}
},
"@babel/parser": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.6.tgz?cache=0&sync_timestamp=1582806107669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.6.tgz",
"integrity": "sha1-ulyZEM3bd2haAI48WHr40ntnliw=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.8.7.tgz?cache=0&sync_timestamp=1583373406940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.7.tgz",
"integrity": "sha1-e4+s+V0l/vlTSq1RxP/s3hph4mo=",
"dev": true
},
"@babel/template": {
......@@ -2448,9 +2448,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -2473,7 +2473,7 @@
},
"@babel/plugin-transform-literals": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.8.3.tgz?cache=0&sync_timestamp=1578951935103&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-literals%2Fdownload%2F%40babel%2Fplugin-transform-literals-7.8.3.tgz",
"integrity": "sha1-rvI5gj2RmU7Hto5VGTUl1229XcE=",
"dev": true,
"requires": {
......@@ -2482,7 +2482,7 @@
},
"@babel/plugin-transform-member-expression-literals": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.8.3.tgz?cache=0&sync_timestamp=1578951935289&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-member-expression-literals%2Fdownload%2F%40babel%2Fplugin-transform-member-expression-literals-7.8.3.tgz",
"integrity": "sha1-lj/tS2IKx8v2Apx1VCQCn6OkBBA=",
"dev": true,
"requires": {
......@@ -2491,7 +2491,7 @@
},
"@babel/plugin-transform-modules-amd": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.8.3.tgz?cache=0&sync_timestamp=1578956828453&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-modules-amd%2Fdownload%2F%40babel%2Fplugin-transform-modules-amd-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.8.3.tgz",
"integrity": "sha1-ZWBtRGFrUCJedvVXjzPFaKC4dqU=",
"dev": true,
"requires": {
......@@ -2554,7 +2554,7 @@
},
"@babel/plugin-transform-object-super": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.8.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-object-super%2Fdownload%2F%40babel%2Fplugin-transform-object-super-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.8.3.tgz?cache=0&sync_timestamp=1578960811276&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-object-super%2Fdownload%2F%40babel%2Fplugin-transform-object-super-7.8.3.tgz",
"integrity": "sha1-67ah56hv+paFi9asAQLWWUQmFyU=",
"dev": true,
"requires": {
......@@ -2563,19 +2563,19 @@
}
},
"@babel/plugin-transform-parameters": {
"version": "7.8.4",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.8.4.tgz",
"integrity": "sha1-HVFV3gtl2wzPmXEWV0XTu5kNd9M=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.8.7.tgz",
"integrity": "sha1-ZvovHeQSm04ER1CSI6xxvaSVU5U=",
"dev": true,
"requires": {
"@babel/helper-call-delegate": "^7.8.3",
"@babel/helper-call-delegate": "^7.8.7",
"@babel/helper-get-function-arity": "^7.8.3",
"@babel/helper-plugin-utils": "^7.8.3"
},
"dependencies": {
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz",
"integrity": "sha1-uJS5R70AQ4HOY+odufCFR+kgq9U=",
"dev": true,
"requires": {
......@@ -2583,9 +2583,9 @@
}
},
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -2605,17 +2605,17 @@
}
},
"@babel/plugin-transform-regenerator": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.8.3.tgz",
"integrity": "sha1-sxAx6AWcB0lb8jYUyX89lpi8bsg=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.8.7.tgz",
"integrity": "sha1-Xkag3KK+4a2ChesFJ+arycN2cvg=",
"dev": true,
"requires": {
"regenerator-transform": "^0.14.0"
"regenerator-transform": "^0.14.2"
}
},
"@babel/plugin-transform-reserved-words": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.8.3.tgz?cache=0&sync_timestamp=1578951936369&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-reserved-words%2Fdownload%2F%40babel%2Fplugin-transform-reserved-words-7.8.3.tgz",
"integrity": "sha1-mgY1rE5mXSmxYoN908xQdF398fU=",
"dev": true,
"requires": {
......@@ -2644,7 +2644,7 @@
},
"@babel/plugin-transform-shorthand-properties": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.8.3.tgz?cache=0&sync_timestamp=1578951936720&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-shorthand-properties%2Fdownload%2F%40babel%2Fplugin-transform-shorthand-properties-7.8.3.tgz",
"integrity": "sha1-KFRSFuAjqDLU06EYXtSSvP6sCMg=",
"dev": true,
"requires": {
......@@ -2662,7 +2662,7 @@
},
"@babel/plugin-transform-sticky-regex": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.8.3.tgz",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.8.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-sticky-regex%2Fdownload%2F%40babel%2Fplugin-transform-sticky-regex-7.8.3.tgz",
"integrity": "sha1-vnoSkPgdrnZ0dUUhmeH3bWF1sQA=",
"dev": true,
"requires": {
......@@ -2700,31 +2700,31 @@
}
},
"@babel/polyfill": {
"version": "7.8.3",
"resolved": "https://registry.npm.taobao.org/@babel/polyfill/download/@babel/polyfill-7.8.3.tgz",
"integrity": "sha1-IzP8IUSlQqfAfaOVAs7us6vk3r0=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/polyfill/download/@babel/polyfill-7.8.7.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fpolyfill%2Fdownload%2F%40babel%2Fpolyfill-7.8.7.tgz",
"integrity": "sha1-FR7CTHE1SBM2Fow72Li/DPkcAy8=",
"dev": true,
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.2"
"regenerator-runtime": "^0.13.4"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.13.3",
"resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.3.tgz",
"integrity": "sha1-fPanfY9cb2Drc8X8GVWyzrAea/U=",
"version": "0.13.4",
"resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.4.tgz?cache=0&sync_timestamp=1582505712016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.4.tgz",
"integrity": "sha1-6Wv2EqM2LRK7affo90/+qyXHrJE=",
"dev": true
}
}
},
"@babel/preset-env": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/preset-env/download/@babel/preset-env-7.8.6.tgz",
"integrity": "sha1-KgdzsIWJ7LpJlfxxsZZeT1Ma9As=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/preset-env/download/@babel/preset-env-7.8.7.tgz",
"integrity": "sha1-H8fYnH910tcMK2do3mwuBJs8uds=",
"dev": true,
"requires": {
"@babel/compat-data": "^7.8.6",
"@babel/helper-compilation-targets": "^7.8.6",
"@babel/helper-compilation-targets": "^7.8.7",
"@babel/helper-module-imports": "^7.8.3",
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
......@@ -2764,9 +2764,9 @@
"@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
"@babel/plugin-transform-new-target": "^7.8.3",
"@babel/plugin-transform-object-super": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.4",
"@babel/plugin-transform-parameters": "^7.8.7",
"@babel/plugin-transform-property-literals": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-reserved-words": "^7.8.3",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
......@@ -2774,7 +2774,7 @@
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/plugin-transform-typeof-symbol": "^7.8.4",
"@babel/plugin-transform-unicode-regex": "^7.8.3",
"@babel/types": "^7.8.6",
"@babel/types": "^7.8.7",
"browserslist": "^4.8.5",
"core-js-compat": "^3.6.2",
"invariant": "^2.2.2",
......@@ -2783,9 +2783,9 @@
},
"dependencies": {
"@babel/types": {
"version": "7.8.6",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.6.tgz?cache=0&sync_timestamp=1582806106251&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.6.tgz",
"integrity": "sha1-Yp7MM8JVf83nEm5YBTEnr9s+bQE=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.8.7.tgz",
"integrity": "sha1-H8lynhrLsjN9W2l3pjl5tIGfXR0=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
......@@ -2795,7 +2795,7 @@
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1580434257623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=",
"dev": true
}
......@@ -2839,18 +2839,18 @@
}
},
"@babel/runtime": {
"version": "7.8.4",
"resolved": "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.8.4.tgz",
"integrity": "sha1-159aIED3yqJNU+VjqtScvAVYEwg=",
"version": "7.8.7",
"resolved": "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.8.7.tgz",
"integrity": "sha1-j+/OmALbVIgbpZ+Quyhxm0mWMk0=",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.2"
"regenerator-runtime": "^0.13.4"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.13.3",
"resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.3.tgz",
"integrity": "sha1-fPanfY9cb2Drc8X8GVWyzrAea/U=",
"version": "0.13.4",
"resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.4.tgz?cache=0&sync_timestamp=1582505712016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.4.tgz",
"integrity": "sha1-6Wv2EqM2LRK7affo90/+qyXHrJE=",
"dev": true
}
}
......@@ -2922,9 +2922,9 @@
}
},
"@electron/get": {
"version": "1.8.0",
"resolved": "https://registry.npm.taobao.org/@electron/get/download/@electron/get-1.8.0.tgz",
"integrity": "sha1-sQMg4rDsVRZeCXhiaVvjSyNu8LU=",
"version": "1.9.0",
"resolved": "https://registry.npm.taobao.org/@electron/get/download/@electron/get-1.9.0.tgz",
"integrity": "sha1-f6bmHX/1D7gqikH0N69947l6qaU=",
"dev": true,
"requires": {
"debug": "^4.1.1",
......@@ -2933,6 +2933,7 @@
"global-agent": "^2.0.2",
"global-tunnel-ng": "^2.7.1",
"got": "^9.6.0",
"progress": "^2.0.3",
"sanitize-filename": "^1.6.2",
"sumchecker": "^3.0.1"
},
......@@ -2954,7 +2955,7 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
......@@ -3058,7 +3059,7 @@
},
"@types/semver": {
"version": "7.1.0",
"resolved": "https://registry.npm.taobao.org/@types/semver/download/@types/semver-7.1.0.tgz",
"resolved": "https://registry.npm.taobao.org/@types/semver/download/@types/semver-7.1.0.tgz?cache=0&sync_timestamp=1580871311074&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fsemver%2Fdownload%2F%40types%2Fsemver-7.1.0.tgz",
"integrity": "sha1-yMYw1MGM0ya+/3dASIdZb5ZAhAg=",
"requires": {
"@types/node": "*"
......@@ -4599,6 +4600,8 @@
"version": "1.5.0",
"resolved": "https://registry.npm.taobao.org/bindings/download/bindings-1.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbindings%2Fdownload%2Fbindings-1.5.0.tgz",
"integrity": "sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=",
"dev": true,
"optional": true,
"requires": {
"file-uri-to-path": "1.0.0"
}
......@@ -4701,7 +4704,7 @@
},
"boolean": {
"version": "3.0.1",
"resolved": "https://registry.npm.taobao.org/boolean/download/boolean-3.0.1.tgz",
"resolved": "https://registry.npm.taobao.org/boolean/download/boolean-3.0.1.tgz?cache=0&sync_timestamp=1581420347794&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fboolean%2Fdownload%2Fboolean-3.0.1.tgz",
"integrity": "sha1-NezytKLuGRsLRJhvFOtfBSpcu08=",
"dev": true
},
......@@ -4947,9 +4950,9 @@
}
},
"builder-util-runtime": {
"version": "8.6.0",
"resolved": "https://registry.npm.taobao.org/builder-util-runtime/download/builder-util-runtime-8.6.0.tgz",
"integrity": "sha1-twB8MBJtqakOmZMhKNKSLIwXhkk=",
"version": "8.6.1",
"resolved": "https://registry.npm.taobao.org/builder-util-runtime/download/builder-util-runtime-8.6.1.tgz",
"integrity": "sha1-z5omj6UXBN4k88CFqo0dGzdn2eo=",
"requires": {
"debug": "^4.1.1",
"sax": "^1.2.4"
......@@ -5095,9 +5098,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001031",
"resolved": "https://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30001031.tgz?cache=0&sync_timestamp=1583127198314&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcaniuse-lite%2Fdownload%2Fcaniuse-lite-1.0.30001031.tgz",
"integrity": "sha1-dvG9054ZVnuFUwL2UQLZqKqtWTA=",
"version": "1.0.30001032",
"resolved": "https://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30001032.tgz",
"integrity": "sha1-uNIkkU4s1/UHCFWD1OOBRMZSvOQ=",
"dev": true
},
"caseless": {
......@@ -5869,7 +5872,7 @@
},
"core-js-compat": {
"version": "3.6.4",
"resolved": "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.6.4.tgz",
"resolved": "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.6.4.tgz?cache=0&sync_timestamp=1578957208980&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.6.4.tgz",
"integrity": "sha1-k4R2Vp67bNqA0zm88Zn65PFv/xc=",
"dev": true,
"requires": {
......@@ -5879,7 +5882,7 @@
"dependencies": {
"semver": {
"version": "7.0.0",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1580434257623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz",
"integrity": "sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=",
"dev": true
}
......@@ -5929,9 +5932,9 @@
}
},
"cross-env": {
"version": "7.0.1",
"resolved": "https://registry.npm.taobao.org/cross-env/download/cross-env-7.0.1.tgz",
"integrity": "sha1-yOA0EuoOE3D+PwBmkppwuOHpDDk=",
"version": "7.0.2",
"resolved": "https://registry.npm.taobao.org/cross-env/download/cross-env-7.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-env%2Fdownload%2Fcross-env-7.0.2.tgz",
"integrity": "sha1-vV7TEzmpOjQYrE88qco0Awgq5fk=",
"dev": true,
"requires": {
"cross-spawn": "^7.0.1"
......@@ -6531,9 +6534,9 @@
"dev": true
},
"electron": {
"version": "8.0.3",
"resolved": "https://registry.npm.taobao.org/electron/download/electron-8.0.3.tgz?cache=0&sync_timestamp=1583202107071&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felectron%2Fdownload%2Felectron-8.0.3.tgz",
"integrity": "sha1-4EiLqqaSkeJtyYHqm8dbXaksXIg=",
"version": "8.1.0",
"resolved": "https://registry.npm.taobao.org/electron/download/electron-8.1.0.tgz",
"integrity": "sha1-W1zg4ttjMpkmFRLgbZFOZalTJvg=",
"dev": true,
"requires": {
"@electron/get": "^1.0.1",
......@@ -6662,18 +6665,18 @@
}
},
"electron-to-chromium": {
"version": "1.3.365",
"resolved": "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.365.tgz",
"integrity": "sha1-+j137UVOGO6s02EaH10z8J3IVwY=",
"version": "1.3.372",
"resolved": "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.372.tgz?cache=0&sync_timestamp=1583543004113&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.372.tgz",
"integrity": "sha1-+2G23+BvMnijhNCE6+911GPsdYA=",
"dev": true
},
"electron-updater": {
"version": "4.2.2",
"resolved": "https://registry.npm.taobao.org/electron-updater/download/electron-updater-4.2.2.tgz",
"integrity": "sha1-V+EGv/rRb3Gx/6OWilKhtxyBR+Y=",
"version": "4.2.4",
"resolved": "https://registry.npm.taobao.org/electron-updater/download/electron-updater-4.2.4.tgz",
"integrity": "sha1-kBW7j4WyTW+KYgqQ3Q/hKDNckCs=",
"requires": {
"@types/semver": "^7.1.0",
"builder-util-runtime": "8.6.0",
"builder-util-runtime": "8.6.1",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"lazy-val": "^1.0.4",
......@@ -6684,7 +6687,7 @@
"dependencies": {
"semver": {
"version": "7.1.3",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-7.1.3.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-7.1.3.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.1.3.tgz",
"integrity": "sha1-5DRc5zBxxT8zZEXPwZ77HDEd8qY="
}
}
......@@ -7757,19 +7760,6 @@
"pend": "~1.2.0"
}
},
"ffi-napi": {
"version": "2.4.6",
"resolved": "https://registry.npm.taobao.org/ffi-napi/download/ffi-napi-2.4.6.tgz",
"integrity": "sha1-3W3/J6w8baiSKaiHZIBPXi5uef0=",
"requires": {
"bindings": "^1.3.0",
"debug": "^3.1.0",
"get-uv-event-loop-napi-h": "^1.0.5",
"node-addon-api": "1.6.1",
"ref-napi": "^1.4.0",
"ref-struct-di": "^1.1.0"
}
},
"figgy-pudding": {
"version": "3.5.1",
"resolved": "https://registry.npm.taobao.org/figgy-pudding/download/figgy-pudding-3.5.1.tgz",
......@@ -7851,7 +7841,9 @@
"file-uri-to-path": {
"version": "1.0.0",
"resolved": "https://registry.npm.taobao.org/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-uri-to-path%2Fdownload%2Ffile-uri-to-path-1.0.0.tgz",
"integrity": "sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90="
"integrity": "sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=",
"dev": true,
"optional": true
},
"fill-range": {
"version": "7.0.1",
......@@ -8238,12 +8230,14 @@
"balanced-match": {
"version": "1.0.0",
"bundled": true,
"dev": true
"dev": true,
"optional": true
},
"brace-expansion": {
"version": "1.1.11",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
......@@ -8263,7 +8257,8 @@
"concat-map": {
"version": "0.0.1",
"bundled": true,
"dev": true
"dev": true,
"optional": true
},
"console-control-strings": {
"version": "1.1.0",
......@@ -8411,6 +8406,7 @@
"version": "3.0.4",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"brace-expansion": "^1.1.7"
}
......@@ -8833,19 +8829,6 @@
"pump": "^3.0.0"
}
},
"get-symbol-from-current-process-h": {
"version": "1.0.2",
"resolved": "https://registry.npm.taobao.org/get-symbol-from-current-process-h/download/get-symbol-from-current-process-h-1.0.2.tgz",
"integrity": "sha1-UQr1Lq74c/cCiFTDN39H97sgAmU="
},
"get-uv-event-loop-napi-h": {
"version": "1.0.6",
"resolved": "https://registry.npm.taobao.org/get-uv-event-loop-napi-h/download/get-uv-event-loop-napi-h-1.0.6.tgz",
"integrity": "sha1-QrCwa3TD7SH7rI58coRf23ogAgg=",
"requires": {
"get-symbol-from-current-process-h": "^1.0.1"
}
},
"get-value": {
"version": "2.0.6",
"resolved": "https://registry.npm.taobao.org/get-value/download/get-value-2.0.6.tgz",
......@@ -8898,7 +8881,7 @@
},
"global-agent": {
"version": "2.1.8",
"resolved": "https://registry.npm.taobao.org/global-agent/download/global-agent-2.1.8.tgz",
"resolved": "https://registry.npm.taobao.org/global-agent/download/global-agent-2.1.8.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobal-agent%2Fdownload%2Fglobal-agent-2.1.8.tgz",
"integrity": "sha1-mdFTZissBMvBGZ/7wIGjqmVqxQ8=",
"dev": true,
"optional": true,
......@@ -8914,14 +8897,14 @@
"dependencies": {
"core-js": {
"version": "3.6.4",
"resolved": "https://registry.npm.taobao.org/core-js/download/core-js-3.6.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-3.6.4.tgz",
"resolved": "https://registry.npm.taobao.org/core-js/download/core-js-3.6.4.tgz?cache=0&sync_timestamp=1578957006406&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-3.6.4.tgz",
"integrity": "sha1-RAqDU2tFgRS5yyrBWAujd9xHBkc=",
"dev": true,
"optional": true
},
"semver": {
"version": "7.1.3",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-7.1.3.tgz",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-7.1.3.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.1.3.tgz",
"integrity": "sha1-5DRc5zBxxT8zZEXPwZ77HDEd8qY=",
"dev": true,
"optional": true
......@@ -9013,7 +8996,7 @@
},
"globalthis": {
"version": "1.0.1",
"resolved": "https://registry.npm.taobao.org/globalthis/download/globalthis-1.0.1.tgz?cache=0&sync_timestamp=1577757335498&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobalthis%2Fdownload%2Fglobalthis-1.0.1.tgz",
"resolved": "https://registry.npm.taobao.org/globalthis/download/globalthis-1.0.1.tgz?cache=0&sync_timestamp=1577757201256&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobalthis%2Fdownload%2Fglobalthis-1.0.1.tgz",
"integrity": "sha1-QBFvXZwHH56PsAN2VN8as6g7fvk=",
"dev": true,
"optional": true,
......@@ -9089,6 +9072,55 @@
"integrity": "sha1-DgOWlf9QyT/CiFV9aW88HcZ3Z1Q=",
"dev": true
},
"happypack": {
"version": "5.0.1",
"resolved": "https://registry.npm.taobao.org/happypack/download/happypack-5.0.1.tgz",
"integrity": "sha1-hQg5Qm1iBaUgv5E+liNJ++UjoHw=",
"dev": true,
"requires": {
"async": "1.5.0",
"json-stringify-safe": "5.0.1",
"loader-utils": "1.1.0",
"serialize-error": "^2.1.0"
},
"dependencies": {
"async": {
"version": "1.5.0",
"resolved": "https://registry.npm.taobao.org/async/download/async-1.5.0.tgz",
"integrity": "sha1-J5ZkJyNXOFlWVjP8YnRES+4vjOM=",
"dev": true
},
"big.js": {
"version": "3.2.0",
"resolved": "https://registry.npm.taobao.org/big.js/download/big.js-3.2.0.tgz",
"integrity": "sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4=",
"dev": true
},
"json5": {
"version": "0.5.1",
"resolved": "https://registry.npm.taobao.org/json5/download/json5-0.5.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjson5%2Fdownload%2Fjson5-0.5.1.tgz",
"integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
"dev": true
},
"loader-utils": {
"version": "1.1.0",
"resolved": "https://registry.npm.taobao.org/loader-utils/download/loader-utils-1.1.0.tgz",
"integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=",
"dev": true,
"requires": {
"big.js": "^3.1.3",
"emojis-list": "^2.0.0",
"json5": "^0.5.0"
}
},
"serialize-error": {
"version": "2.1.0",
"resolved": "https://registry.npm.taobao.org/serialize-error/download/serialize-error-2.1.0.tgz",
"integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=",
"dev": true
}
}
},
"har-schema": {
"version": "2.0.0",
"resolved": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz",
......@@ -9105,6 +9137,56 @@
"har-schema": "^2.0.0"
}
},
"hard-source-webpack-plugin": {
"version": "0.13.1",
"resolved": "https://registry.npm.taobao.org/hard-source-webpack-plugin/download/hard-source-webpack-plugin-0.13.1.tgz",
"integrity": "sha1-qZBx4lsjLxQ4pbw8mfEKOGnkQo4=",
"dev": true,
"requires": {
"chalk": "^2.4.1",
"find-cache-dir": "^2.0.0",
"graceful-fs": "^4.1.11",
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"node-object-hash": "^1.2.0",
"parse-json": "^4.0.0",
"pkg-dir": "^3.0.0",
"rimraf": "^2.6.2",
"semver": "^5.6.0",
"tapable": "^1.0.0-beta.5",
"webpack-sources": "^1.0.1",
"write-json-file": "^2.3.0"
},
"dependencies": {
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1573282918610&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz",
"integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"parse-json": {
"version": "4.0.0",
"resolved": "https://registry.npm.taobao.org/parse-json/download/parse-json-4.0.0.tgz",
"integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
"dev": true,
"requires": {
"error-ex": "^1.3.1",
"json-parse-better-errors": "^1.0.1"
}
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1581458063470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz",
"integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=",
"dev": true
}
}
},
"has": {
"version": "1.0.3",
"resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz",
......@@ -10840,7 +10922,7 @@
},
"matcher": {
"version": "2.1.0",
"resolved": "https://registry.npm.taobao.org/matcher/download/matcher-2.1.0.tgz?cache=0&sync_timestamp=1574143092340&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmatcher%2Fdownload%2Fmatcher-2.1.0.tgz",
"resolved": "https://registry.npm.taobao.org/matcher/download/matcher-2.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmatcher%2Fdownload%2Fmatcher-2.1.0.tgz",
"integrity": "sha1-ZOEEHBW5k+I7eG+TMgp0dL+DPCg=",
"dev": true,
"optional": true,
......@@ -10850,7 +10932,7 @@
"dependencies": {
"escape-string-regexp": {
"version": "2.0.0",
"resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz",
"resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-2.0.0.tgz",
"integrity": "sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=",
"dev": true,
"optional": true
......@@ -11475,11 +11557,6 @@
"lower-case": "^1.1.1"
}
},
"node-addon-api": {
"version": "1.6.1",
"resolved": "https://registry.npm.taobao.org/node-addon-api/download/node-addon-api-1.6.1.tgz?cache=0&sync_timestamp=1574944756132&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-addon-api%2Fdownload%2Fnode-addon-api-1.6.1.tgz",
"integrity": "sha1-qYgcjbxkALrG3e3LluzPgFFnhTY="
},
"node-forge": {
"version": "0.9.0",
"resolved": "https://registry.npm.taobao.org/node-forge/download/node-forge-0.9.0.tgz?cache=0&sync_timestamp=1569524876130&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-forge%2Fdownload%2Fnode-forge-0.9.0.tgz",
......@@ -11574,6 +11651,12 @@
"integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=",
"dev": true
},
"node-object-hash": {
"version": "1.4.2",
"resolved": "https://registry.npm.taobao.org/node-object-hash/download/node-object-hash-1.4.2.tgz",
"integrity": "sha1-OFgz2FsimQK3WCYiT2B3vpaanpQ=",
"dev": true
},
"node-releases": {
"version": "1.1.50",
"resolved": "https://registry.npm.taobao.org/node-releases/download/node-releases-1.1.50.tgz",
......@@ -13100,31 +13183,6 @@
}
}
},
"ref-napi": {
"version": "1.4.3",
"resolved": "https://registry.npm.taobao.org/ref-napi/download/ref-napi-1.4.3.tgz",
"integrity": "sha1-yUlaRnChhlWz1FRyKEzB/awD4xQ=",
"requires": {
"bindings": "^1.3.0",
"debug": "^3.1.0",
"node-addon-api": "^2.0.0"
},
"dependencies": {
"node-addon-api": {
"version": "2.0.0",
"resolved": "https://registry.npm.taobao.org/node-addon-api/download/node-addon-api-2.0.0.tgz?cache=0&sync_timestamp=1574944756132&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-addon-api%2Fdownload%2Fnode-addon-api-2.0.0.tgz",
"integrity": "sha1-+a+413epFSUkSwF3XqDdvhElSDs="
}
}
},
"ref-struct-di": {
"version": "1.1.0",
"resolved": "https://registry.npm.taobao.org/ref-struct-di/download/ref-struct-di-1.1.0.tgz",
"integrity": "sha1-0lIUTrRJYIzPLlwS/aNfgVO9N2A=",
"requires": {
"debug": "^3.1.0"
}
},
"regenerate": {
"version": "1.4.0",
"resolved": "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerate%2Fdownload%2Fregenerate-1.4.0.tgz",
......@@ -13146,12 +13204,13 @@
"integrity": "sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk="
},
"regenerator-transform": {
"version": "0.14.1",
"resolved": "https://registry.npm.taobao.org/regenerator-transform/download/regenerator-transform-0.14.1.tgz",
"integrity": "sha1-Oy/OThq3cywI9mXf2zFHScfd0vs=",
"version": "0.14.2",
"resolved": "https://registry.npm.taobao.org/regenerator-transform/download/regenerator-transform-0.14.2.tgz?cache=0&sync_timestamp=1582478606855&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.14.2.tgz",
"integrity": "sha1-lJ2dh0aP+I1afkc067mUqJLeH/I=",
"dev": true,
"requires": {
"private": "^0.1.6"
"@babel/runtime": "^7.8.4",
"private": "^0.1.8"
}
},
"regex-not": {
......@@ -13235,7 +13294,7 @@
},
"regjsgen": {
"version": "0.5.1",
"resolved": "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.1.tgz",
"resolved": "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.1.tgz?cache=0&sync_timestamp=1571560410206&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregjsgen%2Fdownload%2Fregjsgen-0.5.1.tgz",
"integrity": "sha1-SPC/Gl6iBRlpKcDZeYtC0e2YRDw=",
"dev": true
},
......@@ -13504,7 +13563,7 @@
"dependencies": {
"sprintf-js": {
"version": "1.1.2",
"resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsprintf-js%2Fdownload%2Fsprintf-js-1.1.2.tgz",
"integrity": "sha1-2hdlJiv4wPVxdJ8q1sJjACB65nM=",
"dev": true,
"optional": true
......@@ -14818,7 +14877,7 @@
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz",
"resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz",
"integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=",
"dev": true
}
......@@ -17159,6 +17218,37 @@
"signal-exit": "^3.0.2"
}
},
"write-json-file": {
"version": "2.3.0",
"resolved": "https://registry.npm.taobao.org/write-json-file/download/write-json-file-2.3.0.tgz",
"integrity": "sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=",
"dev": true,
"requires": {
"detect-indent": "^5.0.0",
"graceful-fs": "^4.1.2",
"make-dir": "^1.0.0",
"pify": "^3.0.0",
"sort-keys": "^2.0.0",
"write-file-atomic": "^2.0.0"
},
"dependencies": {
"detect-indent": {
"version": "5.0.0",
"resolved": "https://registry.npm.taobao.org/detect-indent/download/detect-indent-5.0.0.tgz",
"integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=",
"dev": true
},
"sort-keys": {
"version": "2.0.0",
"resolved": "https://registry.npm.taobao.org/sort-keys/download/sort-keys-2.0.0.tgz",
"integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=",
"dev": true,
"requires": {
"is-plain-obj": "^1.0.0"
}
}
}
},
"ws": {
"version": "6.2.1",
"resolved": "https://registry.npm.taobao.org/ws/download/ws-6.2.1.tgz",
......
......@@ -20,6 +20,7 @@
"update:serve": "node server/index.js"
},
"build": {
"extraFiles": [],
"publish": [
{
"provider": "generic",
......@@ -71,9 +72,8 @@
"dependencies": {
"axios": "^0.19.2",
"date-fns": "^2.10.0",
"electron-updater": "^4.2.2",
"electron-updater": "^4.2.4",
"element-ui": "^2.13.0",
"ffi-napi": "^2.4.6",
"fs-extra": "^8.1.0",
"js-cookie": "^2.2.1",
"nedb": "^1.8.0",
......@@ -85,7 +85,7 @@
"vuex-electron": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
......@@ -103,10 +103,10 @@
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@babel/runtime": "^7.8.4",
"@babel/runtime": "^7.8.7",
"ajv": "^6.12.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.6",
......@@ -115,10 +115,10 @@
"chalk": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.1",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"del": "^5.1.0",
"electron": "^8.0.3",
"electron": "^8.1.0",
"electron-builder": "^22.3.6",
"electron-devtools-installer": "^2.2.4",
"eslint": "^6.8.0",
......@@ -132,6 +132,8 @@
"eslint-plugin-standard": "^4.0.0",
"express": "^4.17.1",
"file-loader": "^5.1.0",
"happypack": "^5.0.1",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "0.9.0",
"multispinner": "^0.2.1",
......
......@@ -16,6 +16,7 @@
<% if (!process.browser) { %>
<script>
if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
if (process.env.NODE_ENV !== 'development') window.__lib = require('path').join(__dirname, `../../../../${require('../config/index.js').DllFolder}`).replace(/\\/g, '\\\\')
</script>
<% } %>
......
......@@ -73,9 +73,11 @@ export default {
],
dialogVisible: false,
progressStaus: null,
filePath: ""
filePath: "",
}),
created() {},
created() {
console.log(__lib)
},
methods: {
// 获取electron方法
open() {
......
......@@ -26,6 +26,10 @@
<div class="name">所运行的系统:</div>
<div class="value">{{ platform }}</div>
</div>
<div class="item">
<div class="name">所运行的系统:</div>
<div class="value">{{ arch }}位</div>
</div>
</div>
</div>
</template>
......@@ -39,6 +43,7 @@
node: process.versions.node,
path: this.$route.path,
platform: require('os').platform(),
arch:require('os').arch(),
vue: require('vue/package.json').version
}
},
......