diff --git a/.env.development b/.env.development
index db26413b2e944f245a06833fa6dea2bc6a499eed..8a22c93f6ff18caf8b0cc2f89d2bf9f58f5cf410 100644
--- a/.env.development
+++ b/.env.development
@@ -1,3 +1,3 @@
ENV = 'development'
-VUE_APP_BASE_URL = 'http://localhost:5000/'
\ No newline at end of file
+VUE_APP_BASE_URL = 'http://api.s.colorful3.com/'
diff --git a/package.json b/package.json
index 3403573e1dbb38667a6e8b81025f1256b64df24a..b562ae6aeb96c6450814ba2c770e8376c18e6753 100644
--- a/package.json
+++ b/package.json
@@ -13,6 +13,7 @@
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
+ "@antv/g2plot": "^0.11.35",
"@babel/polyfill": "^7.4.4",
"@tinymce/tinymce-vue": "^2.0.0",
"axios": "~0.18.0",
diff --git a/src/config/stage/plugins.js b/src/config/stage/plugins.js
index feef532aec501f450909aa05d6f247f86e10016e..ac9a326f36c6b02eaa6884e9ebf1ae1f08596987 100644
--- a/src/config/stage/plugins.js
+++ b/src/config/stage/plugins.js
@@ -1,7 +1,8 @@
// 本文件是自动生成, 请勿修改
+import ChartsDemo from '@/plugins/ChartsDemo/stage-config'
import LinCmsUi from '@/plugins/LinCmsUi/stage-config'
import custom from '@/plugins/custom/stage-config'
-const pluginsConfig = [LinCmsUi, custom]
+const pluginsConfig = [ChartsDemo, LinCmsUi, custom]
export default pluginsConfig
diff --git a/src/main.js b/src/main.js
index 464d1f1c7c6af4c024598ec338b0b4f2f84a1c18..bd49ecd982cef15e7a9ecbac36549a5d0a26c59c 100644
--- a/src/main.js
+++ b/src/main.js
@@ -20,9 +20,13 @@ import SourceCode from '@/components/base/source-code/source-code'
import '@/assets/styles/index.scss' // eslint-disable-line
import '@/assets/styles/realize/element-variables.scss'
import 'element-ui/lib/theme-chalk/display.css'
+// eslint-disable-next-line import/order
Vue.config.productionTip = false
+const g2plot = require('@antv/g2plot')
+
+Vue.prototype.$g2plot = g2plot
Vue.use(ElementUI)
Vue.component(CollapseTransition.name, CollapseTransition)
diff --git a/src/plugins/ChartsDemo/README.md b/src/plugins/ChartsDemo/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..9d8dd10eb647701d6c7fd6d7f54de895aaeb503e
--- /dev/null
+++ b/src/plugins/ChartsDemo/README.md
@@ -0,0 +1,32 @@
+# 插件名: antv demo(ChartsDemo)
+
+插件描述, antv demo 用于处于xxx业务场景, 提供了xxx功能
+
+## 舞台视口列表
+
+### TestView
+
+地址: `/ChartsDemo/test.vue`
+显示xxx内容, 可进行xxx操作
+
+## 自由视口列表
+
+### Test
+
+属性:
+
+| Require | Name | Type | Default | Desc |
+|:-------:|:----:|:------:|:-------:|:----:|
+| true | name | String | val | 描述 |
+
+事件:
+
+| Name | Argument | Desc |
+|:----:|:------------:|:----:|
+| name | 事件参数描述 | 描述 |
+
+方法:
+
+| Name | Argument | Result | Desc |
+|:----:|:------------:|:----------:|:----:|
+| name | 方法参数描述 | 返回值描述 | 描述 |
\ No newline at end of file
diff --git a/src/plugins/ChartsDemo/assets/img/logo.png b/src/plugins/ChartsDemo/assets/img/logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..221e49b04418878428a148500e27746ffe256d82
Binary files /dev/null and b/src/plugins/ChartsDemo/assets/img/logo.png differ
diff --git a/src/plugins/ChartsDemo/components/Grouped-Column.vue b/src/plugins/ChartsDemo/components/Grouped-Column.vue
new file mode 100644
index 0000000000000000000000000000000000000000..cec6d1ffe96c9b6c94142f2327a0f552a44d2078
--- /dev/null
+++ b/src/plugins/ChartsDemo/components/Grouped-Column.vue
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
diff --git a/src/plugins/ChartsDemo/components/LineCharts.vue b/src/plugins/ChartsDemo/components/LineCharts.vue
new file mode 100644
index 0000000000000000000000000000000000000000..396a56424dd0b5d6121fe538d6c15686ea88fe72
--- /dev/null
+++ b/src/plugins/ChartsDemo/components/LineCharts.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
diff --git a/src/plugins/ChartsDemo/components/Radar.vue b/src/plugins/ChartsDemo/components/Radar.vue
new file mode 100644
index 0000000000000000000000000000000000000000..54662f43dfdb39b8bbcb159409869abf33dab713
--- /dev/null
+++ b/src/plugins/ChartsDemo/components/Radar.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
diff --git a/src/plugins/ChartsDemo/components/Rose.vue b/src/plugins/ChartsDemo/components/Rose.vue
new file mode 100644
index 0000000000000000000000000000000000000000..9da8db6278b947a5b7c9f7666a91ab2649a2512c
--- /dev/null
+++ b/src/plugins/ChartsDemo/components/Rose.vue
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
diff --git a/src/plugins/ChartsDemo/components/TinyAreaJuly.vue b/src/plugins/ChartsDemo/components/TinyAreaJuly.vue
new file mode 100644
index 0000000000000000000000000000000000000000..0f65f6c0cd648371580fe48bd487c80ba4e15448
--- /dev/null
+++ b/src/plugins/ChartsDemo/components/TinyAreaJuly.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
diff --git a/src/plugins/ChartsDemo/components/TinyAreaJune.vue b/src/plugins/ChartsDemo/components/TinyAreaJune.vue
new file mode 100644
index 0000000000000000000000000000000000000000..c2fd0e86605e1355d2cd76fdb7dae4463f53d2e8
--- /dev/null
+++ b/src/plugins/ChartsDemo/components/TinyAreaJune.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
diff --git a/src/plugins/ChartsDemo/package.json b/src/plugins/ChartsDemo/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..d1b1eb2b18eb58acca48a56c63fef9b603684176
--- /dev/null
+++ b/src/plugins/ChartsDemo/package.json
@@ -0,0 +1,10 @@
+{
+ "name": "lc-plugin-charts-demo",
+ "title": "DashBoard",
+ "version": "1.0.0",
+ "_linVersion": "0.0.1-alpha.3",
+ "description": "charts-demo",
+ "author": "jokky",
+ "dependencies": {},
+ "devDependencies": {}
+}
diff --git a/src/plugins/ChartsDemo/stage-config.js b/src/plugins/ChartsDemo/stage-config.js
new file mode 100644
index 0000000000000000000000000000000000000000..51ccec7479a078dfff1b93a28dad290ba3c70684
--- /dev/null
+++ b/src/plugins/ChartsDemo/stage-config.js
@@ -0,0 +1,12 @@
+const ChartsDemoRouter = {
+ route: '/DashBoard',
+ name: 'DashBoard',
+ title: 'DashBoard',
+ type: 'view',
+ icon: 'iconfont icon-demo',
+ filePath: 'plugins/ChartsDemo/views/ChartsDemo/ChartsDemo.vue',
+ order: 8,
+ inNav: true,
+}
+
+export default ChartsDemoRouter
diff --git a/src/plugins/ChartsDemo/views/ChartsDemo/ChartsDemo.vue b/src/plugins/ChartsDemo/views/ChartsDemo/ChartsDemo.vue
new file mode 100644
index 0000000000000000000000000000000000000000..81876c3ffb8d4387bcef02ab1ae48d5ae4149adf
--- /dev/null
+++ b/src/plugins/ChartsDemo/views/ChartsDemo/ChartsDemo.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/yarn.lock b/yarn.lock
index 16f1d4a77d6e4c90aad98f841c58437d503f2def..bd5467d58f4a0df2c59479068e3f7adc558bdf20 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,6 +2,174 @@
# yarn lockfile v1
+"@antv/adjust@~0.2.0":
+ version "0.2.2"
+ resolved "https://registry.npm.taobao.org/@antv/adjust/download/@antv/adjust-0.2.2.tgz#569ff937213d14a803b17f054cbe1db06805c508"
+ integrity sha1-Vp/5NyE9FKgDsX8FTL4dsGgFxQg=
+ dependencies:
+ "@antv/util" "~2.0.0"
+ tslib "^1.10.0"
+
+"@antv/attr@~0.3.1":
+ version "0.3.2"
+ resolved "https://registry.npm.taobao.org/@antv/attr/download/@antv/attr-0.3.2.tgz?cache=0&sync_timestamp=1580873746250&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Fattr%2Fdownload%2F%40antv%2Fattr-0.3.2.tgz#e5866b64870c62f3a9c25b8a61f654ba2bfda051"
+ integrity sha1-5YZrZIcMYvOpwluKYfZUuiv9oFE=
+ dependencies:
+ "@antv/color-util" "^2.0.1"
+ "@antv/util" "~2.0.0"
+ tslib "^1.10.0"
+
+"@antv/color-util@^2.0.1", "@antv/color-util@^2.0.2":
+ version "2.0.3"
+ resolved "https://registry.npm.taobao.org/@antv/color-util/download/@antv/color-util-2.0.3.tgz#dc5b59922799a5f56cc27597ca615c212f816baa"
+ integrity sha1-3FtZkieZpfVswnWXymFcIS+Ba6o=
+ dependencies:
+ "@antv/util" "~2.0.0"
+ tslib "^1.10.0"
+
+"@antv/component@~0.4.0-beta.13":
+ version "0.4.0-beta.13"
+ resolved "https://registry.npm.taobao.org/@antv/component/download/@antv/component-0.4.0-beta.13.tgz#e87852f5f637502c2e53a40f965fd9c7a1c83c1a"
+ integrity sha1-6HhS9fY3UCwuU6QPll/Zx6HIPBo=
+ dependencies:
+ "@antv/attr" "~0.3.1"
+ "@antv/color-util" "^2.0.2"
+ "@antv/dom-util" "^2.0.1"
+ "@antv/event-emitter" "~0.1.0"
+ "@antv/g" "~3.5.0-beta.1"
+ "@antv/matrix-util" "^2.0.2"
+ "@antv/path-util" "^2.0.3"
+ "@antv/scale" "~0.3.0"
+ "@antv/util" "~2.0.4"
+
+"@antv/coord@~0.2.1":
+ version "0.2.4"
+ resolved "https://registry.npm.taobao.org/@antv/coord/download/@antv/coord-0.2.4.tgz?cache=0&sync_timestamp=1582008947532&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Fcoord%2Fdownload%2F%40antv%2Fcoord-0.2.4.tgz#1d491681d1347bdcb490240fdfd5df33ab32ba36"
+ integrity sha1-HUkWgdE0e9y0kCQP39XfM6syujY=
+ dependencies:
+ "@antv/matrix-util" "~2.0.1-beta.1"
+ "@antv/util" "~2.0.3"
+ tslib "^1.10.0"
+
+"@antv/dom-util@^2.0.1":
+ version "2.0.1"
+ resolved "https://registry.npm.taobao.org/@antv/dom-util/download/@antv/dom-util-2.0.1.tgz#45cf6deaa3726c60fe4340e6df3fe9f0c5fd72ea"
+ integrity sha1-Rc9t6qNybGD+Q0Dm3z/p8MX9cuo=
+
+"@antv/event-emitter@^0.1.0", "@antv/event-emitter@~0.1.0":
+ version "0.1.1"
+ resolved "https://registry.npm.taobao.org/@antv/event-emitter/download/@antv/event-emitter-0.1.1.tgz#5e6cae4206af0e37eb2431fc3cd9416f8d8cd06c"
+ integrity sha1-XmyuQgavDjfrJDH8PNlBb42M0Gw=
+
+"@antv/g-gesture@~0.1.0":
+ version "0.1.0"
+ resolved "https://registry.npm.taobao.org/@antv/g-gesture/download/@antv/g-gesture-0.1.0.tgz#b497ce4f558b4d9c9885dc2a59794e12a9a5eb4c"
+ integrity sha1-tJfOT1WLTZyYhdwqWXlOEqml60w=
+ dependencies:
+ "@antv/event-emitter" "~0.1.0"
+ d3-ease "^1.0.5"
+
+"@antv/g2@~3.6.0-beta.19":
+ version "3.6.0-beta.19"
+ resolved "https://registry.npm.taobao.org/@antv/g2/download/@antv/g2-3.6.0-beta.19.tgz#a90f5c324e5f56bc41ae83fa0398da6b86b26c34"
+ integrity sha1-qQ9cMk5fVrxBroP6A5jaa4aybDQ=
+ dependencies:
+ "@antv/adjust" "~0.2.0"
+ "@antv/attr" "~0.3.1"
+ "@antv/color-util" "^2.0.2"
+ "@antv/component" "~0.4.0-beta.13"
+ "@antv/coord" "~0.2.1"
+ "@antv/dom-util" "^2.0.1"
+ "@antv/event-emitter" "~0.1.0"
+ "@antv/g" "~3.5.0-beta.1"
+ "@antv/matrix-util" "^2.0.2"
+ "@antv/path-util" "^2.0.2"
+ "@antv/scale" "~0.3.0"
+ "@antv/util" "~2.0.4"
+
+"@antv/g2plot@^0.11.35":
+ version "0.11.35"
+ resolved "https://registry.npm.taobao.org/@antv/g2plot/download/@antv/g2plot-0.11.35.tgz#def95ef7d5df488b87e68bb502549cc215762eeb"
+ integrity sha1-3vle99XfSIuH5ou1AlScwhV2Lus=
+ dependencies:
+ "@antv/g-gesture" "~0.1.0"
+ "@antv/g2" "~3.6.0-beta.19"
+ "@antv/gui" "~0.1.0"
+ d3-regression "^1.2.8"
+ fecha "~4.1.0"
+ resize-observer-polyfill "^1.5.1"
+ tslib "^1.10.0"
+
+"@antv/g@~3.5.0-beta.1":
+ version "3.5.0-beta.4"
+ resolved "https://registry.npm.taobao.org/@antv/g/download/@antv/g-3.5.0-beta.4.tgz?cache=0&sync_timestamp=1583075793392&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Fg%2Fdownload%2F%40antv%2Fg-3.5.0-beta.4.tgz#8ff50c2b085d30bbd863ba98e882a085fdd6206d"
+ integrity sha1-j/UMKwhdMLvYY7qY6IKghf3WIG0=
+ dependencies:
+ "@antv/event-emitter" "^0.1.0"
+ "@antv/gl-matrix" "~2.7.1"
+ "@antv/util" "~1.3.1"
+ d3-ease "~1.0.3"
+ d3-interpolate "~1.1.5"
+ d3-timer "~1.0.6"
+ detect-browser "^4.6.0"
+
+"@antv/gl-matrix@^2.7.1", "@antv/gl-matrix@~2.7.1":
+ version "2.7.1"
+ resolved "https://registry.npm.taobao.org/@antv/gl-matrix/download/@antv/gl-matrix-2.7.1.tgz#acb8e37f7ab3df01345aba4372d7942be42eba14"
+ integrity sha1-rLjjf3qz3wE0WrpDcteUK+QuuhQ=
+
+"@antv/gui@~0.1.0":
+ version "0.1.1"
+ resolved "https://registry.npm.taobao.org/@antv/gui/download/@antv/gui-0.1.1.tgz#f2914236bd454d3219f63b0980d166f5b82ff617"
+ integrity sha1-8pFCNr1FTTIZ9jsJgNFm9bgv9hc=
+ dependencies:
+ "@antv/dom-util" "^2.0.1"
+ "@antv/g" "~3.5.0-beta.1"
+ "@antv/path-util" "^2.0.0"
+ "@antv/scale" "~0.3.0"
+ "@antv/util" "~2.0.0"
+ tslib "^1.10.0"
+
+"@antv/matrix-util@^2.0.2", "@antv/matrix-util@~2.0.1-beta.1":
+ version "2.0.4"
+ resolved "https://registry.npm.taobao.org/@antv/matrix-util/download/@antv/matrix-util-2.0.4.tgz#13a6e08c936a37ee70eee2bc714d6206b209bc70"
+ integrity sha1-E6bgjJNqN+5w7uK8cU1iBrIJvHA=
+ dependencies:
+ "@antv/gl-matrix" "^2.7.1"
+ "@antv/util" "~2.0.0"
+ tslib "^1.10.0"
+
+"@antv/path-util@^2.0.0", "@antv/path-util@^2.0.2", "@antv/path-util@^2.0.3":
+ version "2.0.5"
+ resolved "https://registry.npm.taobao.org/@antv/path-util/download/@antv/path-util-2.0.5.tgz?cache=0&sync_timestamp=1582514021895&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Fpath-util%2Fdownload%2F%40antv%2Fpath-util-2.0.5.tgz#8c755d15a1a28c9489632aeccccccf975b90b1a0"
+ integrity sha1-jHVdFaGijJSJYyrszMzPl1uQsaA=
+ dependencies:
+ "@antv/util" "~2.0.0"
+ tslib "^1.10.0"
+
+"@antv/scale@~0.3.0":
+ version "0.3.0"
+ resolved "https://registry.npm.taobao.org/@antv/scale/download/@antv/scale-0.3.0.tgz?cache=0&sync_timestamp=1582630244041&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Fscale%2Fdownload%2F%40antv%2Fscale-0.3.0.tgz#7fe8f834498dd805f7450f6e227f2a93020bb705"
+ integrity sha1-f+j4NEmN2AX3RQ9uIn8qkwILtwU=
+ dependencies:
+ "@antv/util" "~2.0.3"
+ fecha "~3.0.3"
+ tslib "^1.10.0"
+
+"@antv/util@~1.3.1":
+ version "1.3.1"
+ resolved "https://registry.npm.taobao.org/@antv/util/download/@antv/util-1.3.1.tgz?cache=0&sync_timestamp=1572438102677&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Futil%2Fdownload%2F%40antv%2Futil-1.3.1.tgz#30a34b201ff9126ec0d58c72c8166a9c3e644ccd"
+ integrity sha1-MKNLIB/5Em7A1YxyyBZqnD5kTM0=
+ dependencies:
+ "@antv/gl-matrix" "^2.7.1"
+
+"@antv/util@~2.0.0", "@antv/util@~2.0.3", "@antv/util@~2.0.4":
+ version "2.0.6"
+ resolved "https://registry.npm.taobao.org/@antv/util/download/@antv/util-2.0.6.tgz?cache=0&sync_timestamp=1572438102677&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40antv%2Futil%2Fdownload%2F%40antv%2Futil-2.0.6.tgz#cf0a97de31d4594ab53f49ebcdb7dee85d3e600e"
+ integrity sha1-zwqX3jHUWUq1P0nrzbfe6F0+YA4=
+ dependencies:
+ tslib "^1.10.0"
+
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
@@ -826,13 +994,6 @@
dependencies:
regenerator-runtime "^0.13.2"
-"@babel/runtime@^7.6.3":
- version "7.7.4"
- resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.7.4.tgz#b23a856751e4bf099262f867767889c0e3fe175b"
- integrity sha1-sjqFZ1HkvwmSYvhndniJwOP+F1s=
- dependencies:
- regenerator-runtime "^0.13.2"
-
"@babel/template@^7.1.0", "@babel/template@^7.2.2", "@babel/template@^7.4.0":
version "7.4.0"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.0.tgz#12474e9c077bae585c5d835a95c0b0b790c25c8b"
@@ -1032,11 +1193,32 @@
call-me-maybe "^1.0.1"
glob-to-regexp "^0.3.0"
+"@nodelib/fs.scandir@2.1.3":
+ version "2.1.3"
+ resolved "https://registry.npm.taobao.org/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
+ integrity sha1-Olgr21OATGum0UZXnEblITDPSjs=
+ dependencies:
+ "@nodelib/fs.stat" "2.0.3"
+ run-parallel "^1.1.9"
+
+"@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
+ version "2.0.3"
+ resolved "https://registry.npm.taobao.org/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
+ integrity sha1-NNxfTKu8cg9OYPdadH5+zWwXW9M=
+
"@nodelib/fs.stat@^1.1.2":
version "1.1.3"
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
+"@nodelib/fs.walk@^1.2.3":
+ version "1.2.4"
+ resolved "https://registry.npm.taobao.org/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
+ integrity sha1-ARuSAqcKY2bkNspcBlhEUoqwSXY=
+ dependencies:
+ "@nodelib/fs.scandir" "2.1.3"
+ fastq "^1.6.0"
+
"@samverschueren/stream-to-observable@^0.3.0":
version "0.3.0"
resolved "https://registry.npm.taobao.org/@samverschueren/stream-to-observable/download/@samverschueren/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f"
@@ -1147,11 +1329,6 @@
resolved "https://registry.npm.taobao.org/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz?cache=0&sync_timestamp=1572463399870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fnormalize-package-data%2Fdownload%2F%40types%2Fnormalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
integrity sha1-5IbQ2XOW15vu3QpuM/RTT/a0lz4=
-"@types/parse-json@^4.0.0":
- version "4.0.0"
- resolved "https://registry.npm.taobao.org/@types/parse-json/download/@types/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
- integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=
-
"@types/stack-utils@^1.0.1":
version "1.0.1"
resolved "https://registry.npm.taobao.org/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
@@ -1692,6 +1869,14 @@ address@^1.0.3:
resolved "http://r.cnpmjs.org/address/download/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
integrity sha1-tfUGMfjWzsi9IMljljr7VeBsvOk=
+aggregate-error@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.npm.taobao.org/aggregate-error/download/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0"
+ integrity sha1-2y/nJG5Tb0DZtUQqOeEX191qJOA=
+ dependencies:
+ clean-stack "^2.0.0"
+ indent-string "^4.0.0"
+
ajv-errors@^1.0.0:
version "1.0.0"
resolved "http://r.cnpmjs.org/ajv-errors/download/ajv-errors-1.0.0.tgz#ecf021fa108fd17dfb5e6b383f2dd233e31ffc59"
@@ -1954,6 +2139,11 @@ array-union@^1.0.1, array-union@^1.0.2:
dependencies:
array-uniq "^1.0.1"
+array-union@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+ integrity sha1-t5hCCtvrHego2ErNii4j0+/oXo0=
+
array-uniq@^1.0.1:
version "1.0.3"
resolved "http://r.cnpmjs.org/array-uniq/download/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
@@ -2781,6 +2971,13 @@ call-me-maybe@^1.0.1:
resolved "http://r.cnpmjs.org/call-me-maybe/download/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
integrity sha1-JtII6onje1y95gJQoV8DHBak1ms=
+caller-callsite@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npm.taobao.org/caller-callsite/download/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
+ integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
+ dependencies:
+ callsites "^2.0.0"
+
caller-path@^0.1.0:
version "0.1.0"
resolved "http://r.cnpmjs.org/caller-path/download/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
@@ -2788,6 +2985,13 @@ caller-path@^0.1.0:
dependencies:
callsites "^0.2.0"
+caller-path@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npm.taobao.org/caller-path/download/caller-path-2.0.0.tgz?cache=0&sync_timestamp=1574395542397&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcaller-path%2Fdownload%2Fcaller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
+ integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
+ dependencies:
+ caller-callsite "^2.0.0"
+
callsites@^0.2.0:
version "0.2.0"
resolved "http://r.cnpmjs.org/callsites/download/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
@@ -3053,6 +3257,11 @@ clean-css@4.2.x:
dependencies:
source-map "~0.6.0"
+clean-stack@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.npm.taobao.org/clean-stack/download/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+ integrity sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=
+
cli-cursor@^2.0.0, cli-cursor@^2.1.0:
version "2.1.0"
resolved "http://r.cnpmjs.org/cli-cursor/download/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
@@ -3256,11 +3465,6 @@ commander@^2.20.0:
resolved "https://registry.npm.taobao.org/commander/download/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=
-commander@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npm.taobao.org/commander/download/commander-4.0.1.tgz#b67622721785993182e807f4883633e6401ba53c"
- integrity sha1-tnYicheFmTGC6Af0iDYz5kAbpTw=
-
commander@~2.20.0:
version "2.20.0"
resolved "https://registry.npm.taobao.org/commander/download/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
@@ -3482,16 +3686,15 @@ cosmiconfig@^5.0.0:
js-yaml "^3.9.0"
parse-json "^4.0.0"
-cosmiconfig@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npm.taobao.org/cosmiconfig/download/cosmiconfig-6.0.0.tgz?cache=0&sync_timestamp=1572710769619&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcosmiconfig%2Fdownload%2Fcosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
- integrity sha1-2k/uhTxS9rHmk19BwaL8UL1KmYI=
+cosmiconfig@^5.2.1:
+ version "5.2.1"
+ resolved "https://registry.npm.taobao.org/cosmiconfig/download/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
+ integrity sha1-BA9yaAnFked6F8CjYmykW08Wixo=
dependencies:
- "@types/parse-json" "^4.0.0"
- import-fresh "^3.1.0"
- parse-json "^5.0.0"
- path-type "^4.0.0"
- yaml "^1.7.2"
+ import-fresh "^2.0.0"
+ is-directory "^0.3.1"
+ js-yaml "^3.13.1"
+ parse-json "^4.0.0"
create-ecdh@^4.0.0:
version "4.0.3"
@@ -3876,6 +4079,33 @@ cz-conventional-changelog@^2.1.0:
right-pad "^1.0.1"
word-wrap "^1.0.3"
+d3-color@1:
+ version "1.4.0"
+ resolved "https://registry.npm.taobao.org/d3-color/download/d3-color-1.4.0.tgz#89c45a995ed773b13314f06460df26d60ba0ecaf"
+ integrity sha1-icRamV7Xc7EzFPBkYN8m1gug7K8=
+
+d3-ease@^1.0.5, d3-ease@~1.0.3:
+ version "1.0.6"
+ resolved "https://registry.npm.taobao.org/d3-ease/download/d3-ease-1.0.6.tgz#ebdb6da22dfac0a22222f2d4da06f66c416a0ec0"
+ integrity sha1-69ttoi36wKIiIvLU2gb2bEFqDsA=
+
+d3-interpolate@~1.1.5:
+ version "1.1.6"
+ resolved "https://registry.npm.taobao.org/d3-interpolate/download/d3-interpolate-1.1.6.tgz#2cf395ae2381804df08aa1bf766b7f97b5f68fb6"
+ integrity sha1-LPOVriOBgE3wiqG/dmt/l7X2j7Y=
+ dependencies:
+ d3-color "1"
+
+d3-regression@^1.2.8:
+ version "1.3.4"
+ resolved "https://registry.npm.taobao.org/d3-regression/download/d3-regression-1.3.4.tgz#a3414b1abe5a20d46a208d95e565a418be9a0e23"
+ integrity sha1-o0FLGr5aINRqII2V5WWkGL6aDiM=
+
+d3-timer@~1.0.6:
+ version "1.0.10"
+ resolved "https://registry.npm.taobao.org/d3-timer/download/d3-timer-1.0.10.tgz?cache=0&sync_timestamp=1573934576216&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fd3-timer%2Fdownload%2Fd3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5"
+ integrity sha1-3+dripF0iDGxO22ceT/71QjdneU=
+
dashdash@^1.12.0:
version "1.14.1"
resolved "http://r.cnpmjs.org/dashdash/download/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
@@ -4054,6 +4284,20 @@ del@^4.1.1:
pify "^4.0.1"
rimraf "^2.6.3"
+del@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.npm.taobao.org/del/download/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7"
+ integrity sha1-2Uh8lONnQQ5u/ykl7ljAyEp1s6c=
+ dependencies:
+ globby "^10.0.1"
+ graceful-fs "^4.2.2"
+ is-glob "^4.0.1"
+ is-path-cwd "^2.2.0"
+ is-path-inside "^3.0.1"
+ p-map "^3.0.0"
+ rimraf "^3.0.0"
+ slash "^3.0.0"
+
delayed-stream@~1.0.0:
version "1.0.0"
resolved "http://r.cnpmjs.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
@@ -4081,6 +4325,11 @@ destroy@~1.0.4:
resolved "http://r.cnpmjs.org/destroy/download/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+detect-browser@^4.6.0:
+ version "4.8.0"
+ resolved "https://registry.npm.taobao.org/detect-browser/download/detect-browser-4.8.0.tgz#1d73bd88c17be866901950ce0aaae1ed060902c6"
+ integrity sha1-HXO9iMF76GaQGVDOCqrh7QYJAsY=
+
detect-indent@^4.0.0:
version "4.0.0"
resolved "https://registry.npm.taobao.org/detect-indent/download/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
@@ -4132,6 +4381,13 @@ dir-glob@^2.2.2:
dependencies:
path-type "^3.0.0"
+dir-glob@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.npm.taobao.org/dir-glob/download/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+ integrity sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=
+ dependencies:
+ path-type "^4.0.0"
+
directory-tree@^2.2.3:
version "2.2.4"
resolved "https://registry.npm.taobao.org/directory-tree/download/directory-tree-2.2.4.tgz#6d5bd7d82e48378e256a1e87b678a43c50076e2e"
@@ -4935,7 +5191,22 @@ execa@^1.0.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"
-execa@^3.3.0, execa@^3.4.0:
+execa@^2.0.3:
+ version "2.1.0"
+ resolved "https://registry.npm.taobao.org/execa/download/execa-2.1.0.tgz?cache=0&sync_timestamp=1576749101742&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-2.1.0.tgz#e5d3ecd837d2a60ec50f3da78fd39767747bbe99"
+ integrity sha1-5dPs2DfSpg7FDz2nj9OXZ3R7vpk=
+ dependencies:
+ cross-spawn "^7.0.0"
+ get-stream "^5.0.0"
+ is-stream "^2.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^3.0.0"
+ onetime "^5.1.0"
+ p-finally "^2.0.0"
+ signal-exit "^3.0.2"
+ strip-final-newline "^2.0.0"
+
+execa@^3.3.0:
version "3.4.0"
resolved "https://registry.npm.taobao.org/execa/download/execa-3.4.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89"
integrity sha1-wI7UVQ72XYWPrCaf/IVyRG8364k=
@@ -5165,6 +5436,18 @@ fast-glob@^2.2.6:
merge2 "^1.2.3"
micromatch "^3.1.10"
+fast-glob@^3.0.3:
+ version "3.2.2"
+ resolved "https://registry.npm.taobao.org/fast-glob/download/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d"
+ integrity sha1-reGp2RFIll1L98UfcuHKZi0y5j0=
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.0"
+ merge2 "^1.3.0"
+ micromatch "^4.0.2"
+ picomatch "^2.2.1"
+
fast-json-stable-stringify@^2.0.0:
version "2.0.0"
resolved "http://r.cnpmjs.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
@@ -5180,6 +5463,13 @@ fastparse@^1.1.1:
resolved "http://r.cnpmjs.org/fastparse/download/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8"
integrity sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=
+fastq@^1.6.0:
+ version "1.6.1"
+ resolved "https://registry.npm.taobao.org/fastq/download/fastq-1.6.1.tgz?cache=0&sync_timestamp=1582834566164&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffastq%2Fdownload%2Ffastq-1.6.1.tgz#4570c74f2ded173e71cf0beb08ac70bb85826791"
+ integrity sha1-RXDHTy3tFz5xzwvrCKxwu4WCZ5E=
+ dependencies:
+ reusify "^1.0.4"
+
fastscan@^1.0.4:
version "1.0.4"
resolved "http://registry.npm.taobao.org/fastscan/download/fastscan-1.0.4.tgz#ec74dc275980d9045db89a9758ce45011cb23379"
@@ -5206,6 +5496,16 @@ fb-watchman@^2.0.0:
dependencies:
bser "^2.0.0"
+fecha@~3.0.3:
+ version "3.0.3"
+ resolved "https://registry.npm.taobao.org/fecha/download/fecha-3.0.3.tgz?cache=0&sync_timestamp=1581333310491&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffecha%2Fdownload%2Ffecha-3.0.3.tgz#fabbd416497649a42c24d34bfa726b579203a1e2"
+ integrity sha1-+rvUFkl2SaQsJNNL+nJrV5IDoeI=
+
+fecha@~4.1.0:
+ version "4.1.0"
+ resolved "https://registry.npm.taobao.org/fecha/download/fecha-4.1.0.tgz?cache=0&sync_timestamp=1581333310491&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffecha%2Fdownload%2Ffecha-4.1.0.tgz#c7bd59e45512e4d01e396b571f83f2197f81de40"
+ integrity sha1-x71Z5FUS5NAeOWtXH4PyGX+B3kA=
+
figgy-pudding@^3.5.1:
version "3.5.1"
resolved "http://r.cnpmjs.org/figgy-pudding/download/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790"
@@ -5673,7 +5973,7 @@ glob-parent@^3.1.0:
is-glob "^3.1.0"
path-dirname "^1.0.0"
-glob-parent@^5.0.0:
+glob-parent@^5.0.0, glob-parent@^5.1.0:
version "5.1.0"
resolved "https://registry.npm.taobao.org/glob-parent/download/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
integrity sha1-X0wdHnSNMM1zrSlEs1d6gbCB6MI=
@@ -5738,6 +6038,20 @@ globals@^9.18.0:
resolved "https://registry.npm.taobao.org/globals/download/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
integrity sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=
+globby@^10.0.1:
+ version "10.0.2"
+ resolved "https://registry.npm.taobao.org/globby/download/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543"
+ integrity sha1-J3WT50WsqkZGw6tBEonsR6A5JUM=
+ dependencies:
+ "@types/glob" "^7.1.1"
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.0.3"
+ glob "^7.1.3"
+ ignore "^5.1.1"
+ merge2 "^1.2.3"
+ slash "^3.0.0"
+
globby@^5.0.0:
version "5.0.0"
resolved "http://r.cnpmjs.org/globby/download/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
@@ -5810,7 +6124,7 @@ graceful-fs@^4.1.15:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
-graceful-fs@^4.2.0:
+graceful-fs@^4.2.0, graceful-fs@^4.2.2:
version "4.2.3"
resolved "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
integrity sha1-ShL/G2A3bvCYYsIJPt2Qgyi+hCM=
@@ -6222,6 +6536,11 @@ ignore@^4.0.3, ignore@^4.0.6:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
+ignore@^5.1.1:
+ version "5.1.4"
+ resolved "https://registry.npm.taobao.org/ignore/download/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
+ integrity sha1-hLez2+ZFUrbvDsqZ9nQ9vsbZet8=
+
import-cwd@^2.0.0:
version "2.1.0"
resolved "http://r.cnpmjs.org/import-cwd/download/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
@@ -6229,6 +6548,14 @@ import-cwd@^2.0.0:
dependencies:
import-from "^2.1.0"
+import-fresh@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npm.taobao.org/import-fresh/download/import-fresh-2.0.0.tgz?cache=0&sync_timestamp=1573665120798&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fimport-fresh%2Fdownload%2Fimport-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
+ integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
+ dependencies:
+ caller-path "^2.0.0"
+ resolve-from "^3.0.0"
+
import-fresh@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390"
@@ -6237,14 +6564,6 @@ import-fresh@^3.0.0:
parent-module "^1.0.0"
resolve-from "^4.0.0"
-import-fresh@^3.1.0:
- version "3.2.1"
- resolved "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.2.1.tgz?cache=0&sync_timestamp=1573665120798&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fimport-fresh%2Fdownload%2Fimport-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
- integrity sha1-Yz/2GFBueTr1rJG/SLcmd+FcvmY=
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
-
import-from@^2.1.0:
version "2.1.0"
resolved "http://r.cnpmjs.org/import-from/download/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
@@ -6290,6 +6609,11 @@ indent-string@^3.0.0:
resolved "https://registry.npm.taobao.org/indent-string/download/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
+indent-string@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.npm.taobao.org/indent-string/download/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+ integrity sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=
+
indexes-of@^1.0.1:
version "1.0.1"
resolved "http://r.cnpmjs.org/indexes-of/download/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
@@ -6701,6 +7025,11 @@ is-path-cwd@^2.0.0:
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.1.0.tgz#2e0c7e463ff5b7a0eb60852d851a6809347a124c"
integrity sha512-Sc5j3/YnM8tDeyCsVeKlm/0p95075DyLmDEIkSgQ7mXkrOX+uTCtmQFm0CYzVyJwcCCmO3k8qfJt17SxQwB5Zw==
+is-path-cwd@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.npm.taobao.org/is-path-cwd/download/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
+ integrity sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=
+
is-path-in-cwd@^1.0.0:
version "1.0.1"
resolved "http://r.cnpmjs.org/is-path-in-cwd/download/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
@@ -6729,6 +7058,11 @@ is-path-inside@^2.1.0:
dependencies:
path-is-inside "^1.0.2"
+is-path-inside@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.npm.taobao.org/is-path-inside/download/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017"
+ integrity sha1-9SIPyCo+IzdXKR3dycWHfyofMBc=
+
is-plain-obj@^1.0.0:
version "1.1.0"
resolved "https://registry.npm.taobao.org/is-plain-obj/download/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
@@ -7684,22 +8018,24 @@ linkify-it@^2.0.0:
dependencies:
uc.micro "^1.0.1"
-lint-staged@^10.0.0-1:
- version "10.0.0-beta.7"
- resolved "https://registry.npm.taobao.org/lint-staged/download/lint-staged-10.0.0-beta.7.tgz?cache=0&sync_timestamp=1575529394505&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flint-staged%2Fdownload%2Flint-staged-10.0.0-beta.7.tgz#c6ee4e2b72d2106f2dd8955689ff0dfe26217891"
- integrity sha1-xu5OK3LSEG8t2JVWif8N/iYheJE=
+lint-staged@^9.5.0:
+ version "9.5.0"
+ resolved "https://registry.npm.taobao.org/lint-staged/download/lint-staged-9.5.0.tgz#290ec605252af646d9b74d73a0fa118362b05a33"
+ integrity sha1-KQ7GBSUq9kbZt01zoPoRg2KwWjM=
dependencies:
- chalk "^3.0.0"
- commander "^4.0.1"
- cosmiconfig "^6.0.0"
+ chalk "^2.4.2"
+ commander "^2.20.0"
+ cosmiconfig "^5.2.1"
debug "^4.1.1"
dedent "^0.7.0"
- execa "^3.4.0"
+ del "^5.0.0"
+ execa "^2.0.3"
listr "^0.14.3"
log-symbols "^3.0.0"
micromatch "^4.0.2"
normalize-path "^3.0.0"
- please-upgrade-node "^3.2.0"
+ please-upgrade-node "^3.1.1"
+ string-argv "^0.3.0"
stringify-object "^3.3.0"
listr-silent-renderer@^1.1.1:
@@ -8158,6 +8494,11 @@ merge2@^1.2.3:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5"
integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA==
+merge2@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81"
+ integrity sha1-WzZu6DsvFYLEj4fkfPGpNSEDyoE=
+
merge@^1.2.0:
version "1.2.1"
resolved "https://registry.npm.taobao.org/merge/download/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
@@ -8821,6 +9162,13 @@ npm-run-path@^2.0.0:
dependencies:
path-key "^2.0.0"
+npm-run-path@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5"
+ integrity sha1-f5G+MX9qRm7+08nymArYpO6LD6U=
+ dependencies:
+ path-key "^3.0.0"
+
npm-run-path@^4.0.0:
version "4.0.0"
resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-4.0.0.tgz?cache=0&sync_timestamp=1571055779038&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-4.0.0.tgz#d644ec1bd0569187d2a52909971023a0a58e8438"
@@ -9197,6 +9545,13 @@ p-map@^2.0.0:
resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+p-map@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npm.taobao.org/p-map/download/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
+ integrity sha1-1wTZr4orpoTiYA2aIVmD1BQal50=
+ dependencies:
+ aggregate-error "^3.0.0"
+
p-retry@^3.0.1:
version "3.0.1"
resolved "https://registry.npm.taobao.org/p-retry/download/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328"
@@ -9440,6 +9795,11 @@ picomatch@^2.0.5:
resolved "https://registry.npm.taobao.org/picomatch/download/picomatch-2.1.1.tgz#ecdfbea7704adb5fe6fb47f9866c4c0e15e905c5"
integrity sha1-7N++p3BK21/m+0f5hmxMDhXpBcU=
+picomatch@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.npm.taobao.org/picomatch/download/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a"
+ integrity sha1-IbrIiLbthgH4Mc54FuM1vHefCko=
+
pify@^2.0.0:
version "2.3.0"
resolved "http://r.cnpmjs.org/pify/download/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
@@ -9502,9 +9862,9 @@ pkg-up@^2.0.0:
dependencies:
find-up "^2.1.0"
-please-upgrade-node@^3.2.0:
+please-upgrade-node@^3.1.1:
version "3.2.0"
- resolved "https://registry.npm.taobao.org/please-upgrade-node/download/please-upgrade-node-3.2.0.tgz?cache=0&sync_timestamp=1565266069139&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fplease-upgrade-node%2Fdownload%2Fplease-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
+ resolved "https://registry.npm.taobao.org/please-upgrade-node/download/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
integrity sha1-rt3T+ZTJM+StmLmdmlVu+g4v6UI=
dependencies:
semver-compare "^1.0.0"
@@ -10831,7 +11191,7 @@ reselect@^3.0.1:
resolved "https://registry.npm.taobao.org/reselect/download/reselect-3.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freselect%2Fdownload%2Freselect-3.0.1.tgz#efdaa98ea7451324d092b2b2163a6a1d7a9a2147"
integrity sha1-79qpjqdFEyTQkrKyFjpqHXqaIUc=
-resize-observer-polyfill@^1.5.0:
+resize-observer-polyfill@^1.5.0, resize-observer-polyfill@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
@@ -10915,6 +11275,11 @@ retry@^0.12.0:
resolved "https://registry.npm.taobao.org/retry/download/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
+reusify@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.npm.taobao.org/reusify/download/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+ integrity sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=
+
rgb-regex@^1.0.1:
version "1.0.1"
resolved "http://r.cnpmjs.org/rgb-regex/download/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
@@ -10944,6 +11309,13 @@ rimraf@2.6.3, rimraf@^2.6.3:
dependencies:
glob "^7.1.3"
+rimraf@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz?cache=0&sync_timestamp=1581257110269&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=
+ dependencies:
+ glob "^7.1.3"
+
ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2"
resolved "http://r.cnpmjs.org/ripemd160/download/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
@@ -10969,6 +11341,11 @@ run-async@^2.2.0:
dependencies:
is-promise "^2.1.0"
+run-parallel@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.npm.taobao.org/run-parallel/download/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
+ integrity sha1-yd06fPn0ssS2JE4XOm7YZuYd1nk=
+
run-queue@^1.0.0, run-queue@^1.0.3:
version "1.0.3"
resolved "http://r.cnpmjs.org/run-queue/download/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
@@ -11363,6 +11740,11 @@ slash@^2.0.0:
resolved "http://r.cnpmjs.org/slash/download/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
integrity sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q=
+slash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npm.taobao.org/slash/download/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+ integrity sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=
+
slice-ansi@0.0.4:
version "0.0.4"
resolved "https://registry.npm.taobao.org/slice-ansi/download/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
@@ -11677,6 +12059,11 @@ strict-uri-encode@^1.0.0:
resolved "https://registry.npm.taobao.org/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
+string-argv@^0.3.0:
+ version "0.3.1"
+ resolved "https://registry.npm.taobao.org/string-argv/download/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
+ integrity sha1-leL77AQnrhkYSTX4FtdKqkxcGdo=
+
string-length@^2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/string-length/download/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
@@ -12239,6 +12626,11 @@ tsconfig@^7.0.0:
strip-bom "^3.0.0"
strip-json-comments "^2.0.0"
+tslib@^1.10.0:
+ version "1.11.1"
+ resolved "https://registry.npm.taobao.org/tslib/download/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
+ integrity sha1-6xXRKIJ/vuKEFUnhcfRe0zisfjU=
+
tslib@^1.9.0:
version "1.9.3"
resolved "http://r.cnpmjs.org/tslib/download/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
@@ -13125,13 +13517,6 @@ yaml-front-matter@^4.0.0:
commander "1.0.0"
js-yaml "^3.10.0"
-yaml@^1.7.2:
- version "1.7.2"
- resolved "https://registry.npm.taobao.org/yaml/download/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2"
- integrity sha1-8mqr9zhZCrYe+spQI1jkjcnzSLI=
- dependencies:
- "@babel/runtime" "^7.6.3"
-
yargs-parser@^11.1.1:
version "11.1.1"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"