mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
[Doc] improve quickstart (#1187)
This commit is contained in:
parent
b68ac32325
commit
f44e788ae8
31
README.md
31
README.md
@ -29,8 +29,27 @@
|
||||
|
||||
## Install
|
||||
|
||||
#### NPM
|
||||
|
||||
```shell
|
||||
npm i -S vant
|
||||
npm i vant -S
|
||||
```
|
||||
|
||||
#### YARN
|
||||
|
||||
```shell
|
||||
yarn add vant
|
||||
```
|
||||
|
||||
#### CDN
|
||||
|
||||
```html
|
||||
<!-- import style -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css" />
|
||||
|
||||
<!-- import script -->
|
||||
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
|
||||
## Quickstart
|
||||
@ -80,15 +99,7 @@ import 'vant/lib/vant-css/index.css';
|
||||
Vue.use(Vant);
|
||||
```
|
||||
|
||||
### CDN
|
||||
|
||||
```html
|
||||
<!-- import style -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css" />
|
||||
|
||||
<!-- import script -->
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
> If you configured babel-plugin-import, you won't be allowed to import all components.
|
||||
|
||||
See more in [Quickstart](https://youzan.github.io/vant#/en-US/quickstart).
|
||||
|
||||
|
@ -23,17 +23,40 @@
|
||||
* 支持 [babel-plugin-import](https://github.com/ant-design/babel-plugin-import)
|
||||
* 支持 TypeScript
|
||||
* 支持 SSR
|
||||
|
||||
|
||||
## 安装
|
||||
|
||||
#### NPM
|
||||
|
||||
```shell
|
||||
npm i -S vant
|
||||
npm i vant -S
|
||||
```
|
||||
|
||||
#### YARN
|
||||
|
||||
```shell
|
||||
yarn add vant
|
||||
```
|
||||
|
||||
#### CDN
|
||||
|
||||
访问下面的文件 URL,会自动重定向至最新版本的 CDN 链接,建议使用固定版本的 CDN 链接,避免升级时受到非兼容性更新的影响。
|
||||
|
||||
```html
|
||||
<!-- 引入样式 -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css">
|
||||
|
||||
<!-- 引入组件 -->
|
||||
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
|
||||
## 快速上手
|
||||
|
||||
#### 方式一. 使用 [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) (推荐)
|
||||
|
||||
`babel-plugin-import` 是一款 babel 插件,它会在编译过程中将 import 的写法自动转换为按需引入的方式
|
||||
|
||||
```bash
|
||||
# 安装 babel-plugin-import 插件
|
||||
npm i babel-plugin-import -D
|
||||
@ -61,6 +84,8 @@ import { Button } from 'vant';
|
||||
|
||||
#### 方式二. 按需引入组件
|
||||
|
||||
在不使用插件的情况下,可以手动引入需要的组件
|
||||
|
||||
```js
|
||||
import Button from 'vant/lib/button';
|
||||
import 'vant/lib/vant-css/base.css';
|
||||
@ -77,15 +102,7 @@ import 'vant/lib/vant-css/index.css';
|
||||
Vue.use(Vant);
|
||||
```
|
||||
|
||||
### CDN
|
||||
|
||||
```html
|
||||
<!-- 引入样式 -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css">
|
||||
|
||||
<!-- 引入组件 -->
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
> 注意:配置 babel-plugin-import 插件后将不允许导入所有组件
|
||||
|
||||
更多内容请参考 [快速上手](https://youzan.github.io/vant#/zh-CN/quickstart).
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -16,17 +16,17 @@
|
||||
|
||||
### 快速上手
|
||||
|
||||
请参考 [快速上手](#/zh-CN/quickstart).
|
||||
请参考 [快速上手](#/zh-CN/quickstart)
|
||||
|
||||
### 贡献代码
|
||||
|
||||
修改代码请阅读我们的 [开发指南](https://github.com/youzan/vant/blob/dev/.github/CONTRIBUTING.zh-CN.md)。
|
||||
修改代码请阅读我们的 [开发指南](https://github.com/youzan/vant/blob/dev/.github/CONTRIBUTING.zh-CN.md)
|
||||
|
||||
使用过程中发现任何问题都可以提 [Issue](https://github.com/youzan/vant/issues) 给我们,当然,我们也非常欢迎你给我们发 [PR](https://github.com/youzan/vant/pulls)。
|
||||
使用过程中发现任何问题都可以提 [Issue](https://github.com/youzan/vant/issues) 给我们,当然,我们也非常欢迎你给我们发 [PR](https://github.com/youzan/vant/pulls)
|
||||
|
||||
### 浏览器支持
|
||||
|
||||
现代浏览器以及 Android 4.0+, iOS 6+.
|
||||
现代浏览器以及 Android 4.0+, iOS 6+
|
||||
|
||||
### 链接
|
||||
|
||||
@ -40,4 +40,4 @@
|
||||
|
||||
### 开源协议
|
||||
|
||||
本项目基于 [MIT](https://zh.wikipedia.org/wiki/MIT%E8%A8%B1%E5%8F%AF%E8%AD%89) 协议,请自由地享受和参与开源。
|
||||
本项目基于 [MIT](https://zh.wikipedia.org/wiki/MIT%E8%A8%B1%E5%8F%AF%E8%AD%89) 协议,请自由地享受和参与开源
|
||||
|
@ -1,14 +1,42 @@
|
||||
## Quickstart
|
||||
|
||||
### Starter kit
|
||||
|
||||
Use [vue-cli](https://github.com/vuejs/vue-cli) to create a vant project.
|
||||
|
||||
```shell
|
||||
vue init youzan/vue-cli-template-vant projectName
|
||||
```
|
||||
|
||||
### Install
|
||||
|
||||
#### NPM
|
||||
|
||||
```shell
|
||||
npm i vant -S
|
||||
```
|
||||
|
||||
#### YARN
|
||||
|
||||
```shell
|
||||
yarn add vant
|
||||
```
|
||||
|
||||
#### CDN
|
||||
|
||||
```html
|
||||
<!-- import style -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css" />
|
||||
|
||||
<!-- import script -->
|
||||
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
|
||||
### Usage
|
||||
|
||||
#### 1. Use [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) (Recommended)
|
||||
|
||||
```bash
|
||||
# Install babel-plugin-import
|
||||
npm i babel-plugin-import -D
|
||||
@ -43,7 +71,6 @@ import 'vant/lib/vant-css/button.css';
|
||||
```
|
||||
|
||||
#### 3. Import all components
|
||||
If you configured babel-plugin-import, you won't be allowed to import all components.
|
||||
|
||||
```js
|
||||
import Vue from 'vue';
|
||||
@ -53,24 +80,28 @@ import 'vant/lib/vant-css/index.css';
|
||||
Vue.use(Vant);
|
||||
```
|
||||
|
||||
### CDN
|
||||
> If you configured babel-plugin-import, you won't be allowed to import all components.
|
||||
|
||||
```html
|
||||
<!-- import style -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css" />
|
||||
|
||||
<!-- import script -->
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
### Rem units
|
||||
|
||||
### vue-cli template
|
||||
|
||||
```shell
|
||||
vue init youzan/vue-cli-template-vant projectName
|
||||
```
|
||||
|
||||
### rem units
|
||||
Vant use `px` as size units by default,you can use tools such as `postcss-pxtorem` to transform units to `rem`.
|
||||
|
||||
- [postcss-pxtorem](https://github.com/cuth/postcss-pxtorem)
|
||||
- [lib-flexible](https://github.com/amfe/lib-flexible)
|
||||
|
||||
postcss config example:
|
||||
|
||||
```js
|
||||
module.exports = {
|
||||
plugins: {
|
||||
'autoprefixer': {
|
||||
browsers: ['Android >= 4.0', 'iOS >= 7']
|
||||
}
|
||||
'postcss-pxtorem': {
|
||||
rootValue: 37.5,
|
||||
propList: ['*']
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
@ -1,14 +1,46 @@
|
||||
## 快速上手
|
||||
|
||||
### 脚手架
|
||||
|
||||
我们提供了开箱即用的开发脚手架,通过 [vue-cli](https://github.com/vuejs/vue-cli) 即可快速创建一个基于 `Vant` 的项目。
|
||||
|
||||
```shell
|
||||
vue init youzan/vue-cli-template-vant my-project
|
||||
```
|
||||
|
||||
### 安装
|
||||
|
||||
#### NPM
|
||||
|
||||
```shell
|
||||
npm i vant -S
|
||||
```
|
||||
|
||||
#### YARN
|
||||
|
||||
```shell
|
||||
yarn add vant
|
||||
```
|
||||
|
||||
#### CDN
|
||||
|
||||
访问下面的文件 URL,会自动重定向至最新版本的 CDN 链接,建议使用固定版本的 CDN 链接,避免升级时受到非兼容性更新的影响。
|
||||
|
||||
```html
|
||||
<!-- 引入样式 -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css">
|
||||
|
||||
<!-- 引入组件 -->
|
||||
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
|
||||
### 引入组件
|
||||
|
||||
#### 方式一. 使用 [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) (推荐)
|
||||
|
||||
`babel-plugin-import` 是一款 babel 插件,它会在编译过程中将 import 的写法自动转换为按需引入的方式
|
||||
|
||||
```bash
|
||||
# 安装 babel-plugin-import 插件
|
||||
npm i babel-plugin-import -D
|
||||
@ -16,7 +48,7 @@ npm i babel-plugin-import -D
|
||||
|
||||
```js
|
||||
// 在 .babelrc 或 babel-loader 中添加插件配置
|
||||
// 注意:webpack 1 无需设置 libraryDirectory。
|
||||
// 注意:webpack 1 无需设置 libraryDirectory
|
||||
{
|
||||
"plugins": [
|
||||
["import", {
|
||||
@ -28,14 +60,16 @@ npm i babel-plugin-import -D
|
||||
}
|
||||
```
|
||||
|
||||
接着你可以在代码中直接引入 Vant 组件,插件会自动将代码转化为方式二中的按需引入形式。
|
||||
接着你可以在代码中直接引入 Vant 组件,插件会自动将代码转化为方式二中的按需引入形式
|
||||
|
||||
```js
|
||||
import { Button } from 'vant';
|
||||
import { Button, Cell } from 'vant';
|
||||
```
|
||||
|
||||
#### 方式二. 按需引入组件
|
||||
|
||||
在不使用插件的情况下,可以手动引入需要的组件
|
||||
|
||||
```js
|
||||
import Button from 'vant/lib/button';
|
||||
import 'vant/lib/vant-css/base.css';
|
||||
@ -43,7 +77,6 @@ import 'vant/lib/vant-css/button.css';
|
||||
```
|
||||
|
||||
#### 方式三. 导入所有组件
|
||||
配置 babel-plugin-import 插件后将不允许导入所有组件的方式
|
||||
|
||||
```js
|
||||
import Vue from 'vue';
|
||||
@ -53,25 +86,30 @@ import 'vant/lib/vant-css/index.css';
|
||||
Vue.use(Vant);
|
||||
```
|
||||
|
||||
### CDN
|
||||
>注意:配置 babel-plugin-import 插件后将不允许导入所有组件
|
||||
|
||||
```html
|
||||
<!-- 引入样式 -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css">
|
||||
|
||||
<!-- 引入组件 -->
|
||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||
```
|
||||
### Rem 适配
|
||||
|
||||
### vue-cli 模板
|
||||
可以使用`vue-cli`来初始化`Vant`的通用模板:
|
||||
Vant 中的样式默认使用`px`作为单位,如果需要使用`rem`单位,推荐使用以下两个工具
|
||||
|
||||
```shell
|
||||
vue init youzan/vue-cli-template-vant projectName
|
||||
```
|
||||
|
||||
### rem 适配
|
||||
Vant 中的组件样式默认使用`px`作为单位,如果需要使用`rem`作为单位,推荐使用以下两个工具
|
||||
|
||||
- [postcss-pxtorem](https://github.com/cuth/postcss-pxtorem) 用于将单位转化为 rem
|
||||
- [postcss-pxtorem](https://github.com/cuth/postcss-pxtorem) 是一款 postcss 插件,用于将单位转化为 rem
|
||||
- [lib-flexible](https://github.com/amfe/lib-flexible) 用于设置 rem 基准值
|
||||
|
||||
下面提供了一份基本的 postcss 配置,可以在此配置的基础上根据项目需求进行修改
|
||||
|
||||
```js
|
||||
module.exports = {
|
||||
plugins: {
|
||||
'autoprefixer': {
|
||||
browsers: ['Android >= 4.0', 'iOS >= 7']
|
||||
}
|
||||
'postcss-pxtorem': {
|
||||
rootValue: 37.5,
|
||||
propList: ['*']
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
> 注意:在配置 postcss-loader 时,应避免 ignore node_modules 目录,这会导致 Vant 的样式无法被编译
|
||||
|
@ -58,7 +58,7 @@ export default {
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
font-size: 36px;
|
||||
line-height: 60px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
@ -89,10 +89,6 @@ module.exports = {
|
||||
path: '/icon',
|
||||
title: 'Icon - 图标'
|
||||
},
|
||||
{
|
||||
path: '/image-preview',
|
||||
title: 'ImagePreview - 图片预览'
|
||||
},
|
||||
{
|
||||
path: '/lazyload',
|
||||
title: 'Lazyload - 图片懒加载'
|
||||
@ -168,7 +164,7 @@ module.exports = {
|
||||
]
|
||||
},
|
||||
{
|
||||
groupName: '表单',
|
||||
groupName: '表单组件',
|
||||
list: [
|
||||
{
|
||||
path: '/checkbox',
|
||||
@ -240,6 +236,10 @@ module.exports = {
|
||||
path: '/cell-swipe',
|
||||
title: 'CellSwipe - 滑动单元格'
|
||||
},
|
||||
{
|
||||
path: '/image-preview',
|
||||
title: 'ImagePreview - 图片预览'
|
||||
},
|
||||
{
|
||||
path: '/switch-cell',
|
||||
title: 'SwitchCell - 开关单元格'
|
||||
@ -384,10 +384,6 @@ module.exports = {
|
||||
path: '/icon',
|
||||
title: 'Icon'
|
||||
},
|
||||
{
|
||||
path: '/image-preview',
|
||||
title: 'ImagePreview'
|
||||
},
|
||||
{
|
||||
path: '/lazyload',
|
||||
title: 'Lazyload'
|
||||
@ -535,6 +531,10 @@ module.exports = {
|
||||
path: '/cell-swipe',
|
||||
title: 'CellSwipe'
|
||||
},
|
||||
{
|
||||
path: '/image-preview',
|
||||
title: 'ImagePreview'
|
||||
},
|
||||
{
|
||||
path: '/switch-cell',
|
||||
title: 'SwitchCell'
|
||||
|
12
package.json
12
package.json
@ -57,10 +57,10 @@
|
||||
"devDependencies": {
|
||||
"@vue/server-test-utils": "^1.0.0-beta.16",
|
||||
"@vue/test-utils": "^1.0.0-beta.16",
|
||||
"autoprefixer": "^8.5.0",
|
||||
"autoprefixer": "^8.5.1",
|
||||
"babel-cli": "^6.26.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-jest": "^23.0.0",
|
||||
"babel-jest": "^23.0.1",
|
||||
"babel-loader": "^7.1.4",
|
||||
"babel-plugin-transform-runtime": "^6.15.0",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
@ -75,7 +75,7 @@
|
||||
"gh-pages": "^1.0.0",
|
||||
"html-webpack-plugin": "3.2.0",
|
||||
"husky": "^0.14.3",
|
||||
"jest": "^23.0.0",
|
||||
"jest": "^23.0.1",
|
||||
"jest-serializer-vue": "^1.0.0",
|
||||
"lint-staged": "^7.1.2",
|
||||
"postcss": "^6.0.22",
|
||||
@ -90,16 +90,16 @@
|
||||
"style-loader": "^0.21.0",
|
||||
"uppercamelcase": "^3.0.0",
|
||||
"url-loader": "^1.0.1",
|
||||
"vant-doc": "1.0.4",
|
||||
"vant-doc": "1.0.6",
|
||||
"vue": "2.5.16",
|
||||
"vue-jest": "^2.6.0",
|
||||
"vue-loader": "^15.2.0",
|
||||
"vue-loader": "^15.2.2",
|
||||
"vue-router": "^3.0.1",
|
||||
"vue-server-renderer": "^2.5.16",
|
||||
"vue-sfc-compiler": "^0.0.8",
|
||||
"vue-template-compiler": "2.5.16",
|
||||
"vue-template-es2015-compiler": "^1.6.0",
|
||||
"webpack": "^4.8.3",
|
||||
"webpack": "^4.10.0",
|
||||
"webpack-cli": "^2.1.4",
|
||||
"webpack-serve": "^1.0.2"
|
||||
},
|
||||
|
553
yarn.lock
553
yarn.lock
@ -87,120 +87,131 @@
|
||||
dependencies:
|
||||
lodash "^4.17.4"
|
||||
|
||||
"@webassemblyjs/ast@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.4.3.tgz#3b3f6fced944d8660273347533e6d4d315b5934a"
|
||||
"@webassemblyjs/ast@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.5.8.tgz#f75ac7e7602b7833abd5d53951baae8a07ebb5df"
|
||||
dependencies:
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
|
||||
"@webassemblyjs/wast-parser" "1.4.3"
|
||||
"@webassemblyjs/helper-module-context" "1.5.8"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.5.8"
|
||||
"@webassemblyjs/wast-parser" "1.5.8"
|
||||
debug "^3.1.0"
|
||||
webassemblyjs "1.4.3"
|
||||
mamacro "^0.0.3"
|
||||
|
||||
"@webassemblyjs/floating-point-hex-parser@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.4.3.tgz#f5aee4c376a717c74264d7bacada981e7e44faad"
|
||||
"@webassemblyjs/floating-point-hex-parser@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.8.tgz#e0604d34fab0c910e16113720a5a3c01f558fa54"
|
||||
|
||||
"@webassemblyjs/helper-buffer@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.4.3.tgz#0434b55958519bf503697d3824857b1dea80b729"
|
||||
"@webassemblyjs/helper-api-error@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.8.tgz#f5570aff60090fae1b78a690a95d04cb021da9ca"
|
||||
|
||||
"@webassemblyjs/helper-buffer@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.8.tgz#b1405e819a2c537964682fb70551796ab9602632"
|
||||
dependencies:
|
||||
debug "^3.1.0"
|
||||
|
||||
"@webassemblyjs/helper-code-frame@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.4.3.tgz#f1349ca3e01a8e29ee2098c770773ef97af43641"
|
||||
"@webassemblyjs/helper-code-frame@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.8.tgz#6439de475720198a48fa8b4c38e41987798f73cc"
|
||||
dependencies:
|
||||
"@webassemblyjs/wast-printer" "1.4.3"
|
||||
"@webassemblyjs/wast-printer" "1.5.8"
|
||||
|
||||
"@webassemblyjs/helper-fsm@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.4.3.tgz#65a921db48fb43e868f17b27497870bdcae22b79"
|
||||
"@webassemblyjs/helper-fsm@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.8.tgz#6169af3c9530cf9e89a8f3cf2970ed70e650ae4f"
|
||||
|
||||
"@webassemblyjs/helper-wasm-bytecode@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.4.3.tgz#0e5b4b5418e33f8a26e940b7809862828c3721a5"
|
||||
"@webassemblyjs/helper-module-context@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.8.tgz#73d0de45cebb774d465b5a66fef061f834d6c23c"
|
||||
|
||||
"@webassemblyjs/helper-wasm-section@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.4.3.tgz#9ceedd53a3f152c3412e072887ade668d0b1acbf"
|
||||
"@webassemblyjs/helper-wasm-bytecode@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.8.tgz#60df17f72d12b07e1398756e6ebfe59c03ab2e1a"
|
||||
|
||||
"@webassemblyjs/helper-wasm-section@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.8.tgz#cda7fdb6f3b7b0d215c8f92b7435d47726822f49"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/helper-buffer" "1.4.3"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
|
||||
"@webassemblyjs/wasm-gen" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/helper-buffer" "1.5.8"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.5.8"
|
||||
"@webassemblyjs/wasm-gen" "1.5.8"
|
||||
debug "^3.1.0"
|
||||
|
||||
"@webassemblyjs/leb128@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.4.3.tgz#5a5e5949dbb5adfe3ae95664d0439927ac557fb8"
|
||||
"@webassemblyjs/ieee754@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.5.8.tgz#29383c7172e90121613d5614d532f22c19255c3b"
|
||||
dependencies:
|
||||
ieee754 "^1.1.11"
|
||||
|
||||
"@webassemblyjs/leb128@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.5.8.tgz#657c48ef2537ea2921e897a50157be700bf24eac"
|
||||
dependencies:
|
||||
leb "^0.3.0"
|
||||
|
||||
"@webassemblyjs/validation@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.4.3.tgz#9e66c9b3079d7bbcf2070c1bf52a54af2a09aac9"
|
||||
"@webassemblyjs/wasm-edit@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.8.tgz#592d3678894eaa2ee7e7c2c6a13c2a697db1aa7e"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
|
||||
"@webassemblyjs/wasm-edit@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.4.3.tgz#87febd565e0ffb5ae25f6495bb3958d17aa0a779"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/helper-buffer" "1.4.3"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
|
||||
"@webassemblyjs/helper-wasm-section" "1.4.3"
|
||||
"@webassemblyjs/wasm-gen" "1.4.3"
|
||||
"@webassemblyjs/wasm-opt" "1.4.3"
|
||||
"@webassemblyjs/wasm-parser" "1.4.3"
|
||||
"@webassemblyjs/wast-printer" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/helper-buffer" "1.5.8"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.5.8"
|
||||
"@webassemblyjs/helper-wasm-section" "1.5.8"
|
||||
"@webassemblyjs/wasm-gen" "1.5.8"
|
||||
"@webassemblyjs/wasm-opt" "1.5.8"
|
||||
"@webassemblyjs/wasm-parser" "1.5.8"
|
||||
"@webassemblyjs/wast-printer" "1.5.8"
|
||||
debug "^3.1.0"
|
||||
|
||||
"@webassemblyjs/wasm-gen@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.4.3.tgz#8553164d0154a6be8f74d653d7ab355f73240aa4"
|
||||
"@webassemblyjs/wasm-gen@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.8.tgz#e94e034a45227aaa7c481b25c1aa9a0a00ab9488"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
|
||||
"@webassemblyjs/leb128" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.5.8"
|
||||
"@webassemblyjs/ieee754" "1.5.8"
|
||||
"@webassemblyjs/leb128" "1.5.8"
|
||||
|
||||
"@webassemblyjs/wasm-opt@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.4.3.tgz#26c7a23bfb136aa405b1d3410e63408ec60894b8"
|
||||
"@webassemblyjs/wasm-opt@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.8.tgz#a3a0d00d98dee0f3cf2ae41084eb62715a39242c"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/helper-buffer" "1.4.3"
|
||||
"@webassemblyjs/wasm-gen" "1.4.3"
|
||||
"@webassemblyjs/wasm-parser" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/helper-buffer" "1.5.8"
|
||||
"@webassemblyjs/wasm-gen" "1.5.8"
|
||||
"@webassemblyjs/wasm-parser" "1.5.8"
|
||||
debug "^3.1.0"
|
||||
|
||||
"@webassemblyjs/wasm-parser@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.4.3.tgz#7ddd3e408f8542647ed612019cfb780830993698"
|
||||
"@webassemblyjs/wasm-parser@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.8.tgz#a258a7fd15bd57597e4211d9068639807546555b"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.4.3"
|
||||
"@webassemblyjs/leb128" "1.4.3"
|
||||
"@webassemblyjs/wasm-parser" "1.4.3"
|
||||
webassemblyjs "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/helper-api-error" "1.5.8"
|
||||
"@webassemblyjs/helper-wasm-bytecode" "1.5.8"
|
||||
"@webassemblyjs/leb128" "1.5.8"
|
||||
"@webassemblyjs/wasm-parser" "1.5.8"
|
||||
|
||||
"@webassemblyjs/wast-parser@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.4.3.tgz#3250402e2c5ed53dbe2233c9de1fe1f9f0d51745"
|
||||
"@webassemblyjs/wast-parser@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.5.8.tgz#85705659e15d19b89af38a8d6803d720bb0493cf"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/floating-point-hex-parser" "1.4.3"
|
||||
"@webassemblyjs/helper-code-frame" "1.4.3"
|
||||
"@webassemblyjs/helper-fsm" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/floating-point-hex-parser" "1.5.8"
|
||||
"@webassemblyjs/helper-api-error" "1.5.8"
|
||||
"@webassemblyjs/helper-code-frame" "1.5.8"
|
||||
"@webassemblyjs/helper-fsm" "1.5.8"
|
||||
long "^3.2.0"
|
||||
webassemblyjs "1.4.3"
|
||||
mamacro "^0.0.3"
|
||||
|
||||
"@webassemblyjs/wast-printer@1.4.3":
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.4.3.tgz#3d59aa8d0252d6814a3ef4e6d2a34c9ded3904e0"
|
||||
"@webassemblyjs/wast-printer@1.5.8":
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.5.8.tgz#0f83aa67eddf377dd1d6205d4a4ac976db60e1f6"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/wast-parser" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/wast-parser" "1.5.8"
|
||||
long "^3.2.0"
|
||||
|
||||
"@webpack-contrib/config-loader@^1.1.1":
|
||||
@ -540,12 +551,12 @@ autoprefixer@^6.3.1:
|
||||
postcss "^5.2.16"
|
||||
postcss-value-parser "^3.2.3"
|
||||
|
||||
autoprefixer@^8.5.0:
|
||||
version "8.5.0"
|
||||
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.5.0.tgz#89a39b1316fbe7bc2b4997a0c7dad0149d99511c"
|
||||
autoprefixer@^8.5.1:
|
||||
version "8.5.1"
|
||||
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.5.1.tgz#45b0271b0e634af66613d5a4f99d96f3dcd94474"
|
||||
dependencies:
|
||||
browserslist "^3.2.7"
|
||||
caniuse-lite "^1.0.30000839"
|
||||
browserslist "^3.2.8"
|
||||
caniuse-lite "^1.0.30000846"
|
||||
normalize-range "^0.1.2"
|
||||
num2fraction "^1.2.2"
|
||||
postcss "^6.0.22"
|
||||
@ -791,12 +802,12 @@ babel-helpers@^6.24.1:
|
||||
babel-runtime "^6.22.0"
|
||||
babel-template "^6.24.1"
|
||||
|
||||
babel-jest@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.0.tgz#0e383a2aa6b3535e197db2929570a2182bd084e8"
|
||||
babel-jest@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6"
|
||||
dependencies:
|
||||
babel-plugin-istanbul "^4.1.6"
|
||||
babel-preset-jest "^23.0.0"
|
||||
babel-preset-jest "^23.0.1"
|
||||
|
||||
babel-loader@^7.1.4:
|
||||
version "7.1.4"
|
||||
@ -827,9 +838,9 @@ babel-plugin-istanbul@^4.1.6:
|
||||
istanbul-lib-instrument "^1.10.1"
|
||||
test-exclude "^4.2.1"
|
||||
|
||||
babel-plugin-jest-hoist@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.0.tgz#e61e68799f743391a1e6306ee270477aacf946c8"
|
||||
babel-plugin-jest-hoist@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148"
|
||||
|
||||
babel-plugin-syntax-async-functions@^6.8.0:
|
||||
version "6.13.0"
|
||||
@ -1237,11 +1248,11 @@ babel-preset-es2015@^6.9.0:
|
||||
babel-plugin-transform-es2015-unicode-regex "^6.24.1"
|
||||
babel-plugin-transform-regenerator "^6.24.1"
|
||||
|
||||
babel-preset-jest@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.0.tgz#49de0303f1b6875dcad6163eaa7eb8330d54824d"
|
||||
babel-preset-jest@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198"
|
||||
dependencies:
|
||||
babel-plugin-jest-hoist "^23.0.0"
|
||||
babel-plugin-jest-hoist "^23.0.1"
|
||||
babel-plugin-syntax-object-rest-spread "^6.13.0"
|
||||
|
||||
babel-preset-stage-0@^6.24.1:
|
||||
@ -1541,12 +1552,12 @@ browserslist@^3.2.6:
|
||||
caniuse-lite "^1.0.30000830"
|
||||
electron-to-chromium "^1.3.42"
|
||||
|
||||
browserslist@^3.2.7:
|
||||
version "3.2.7"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.7.tgz#aa488634d320b55e88bab0256184dbbcca1e6de9"
|
||||
browserslist@^3.2.8:
|
||||
version "3.2.8"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
|
||||
dependencies:
|
||||
caniuse-lite "^1.0.30000835"
|
||||
electron-to-chromium "^1.3.45"
|
||||
caniuse-lite "^1.0.30000844"
|
||||
electron-to-chromium "^1.3.47"
|
||||
|
||||
bser@^2.0.0:
|
||||
version "2.0.0"
|
||||
@ -1684,9 +1695,9 @@ caniuse-lite@^1.0.30000830:
|
||||
version "1.0.30000830"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000830.tgz#cb96b8a2dd3cbfe04acea2af3c4e894249095328"
|
||||
|
||||
caniuse-lite@^1.0.30000835, caniuse-lite@^1.0.30000839:
|
||||
version "1.0.30000840"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000840.tgz#344513f8f843536cf99694964c09811277eee395"
|
||||
caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000846:
|
||||
version "1.0.30000846"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000846.tgz#2092911eecad71a89dae1faa62bcc202fde7f959"
|
||||
|
||||
capture-stack-trace@^1.0.0:
|
||||
version "1.0.0"
|
||||
@ -2798,9 +2809,9 @@ electron-to-chromium@^1.3.42:
|
||||
version "1.3.45"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz#458ac1b1c5c760ce8811a16d2bfbd97ec30bafb8"
|
||||
|
||||
electron-to-chromium@^1.3.45:
|
||||
version "1.3.46"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.46.tgz#00e85e22275415a887505e4ab49737194f18b9b0"
|
||||
electron-to-chromium@^1.3.47:
|
||||
version "1.3.48"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900"
|
||||
|
||||
elegant-spinner@^1.0.1:
|
||||
version "1.0.1"
|
||||
@ -3137,14 +3148,14 @@ expect@^22.4.3:
|
||||
jest-message-util "^22.4.3"
|
||||
jest-regex-util "^22.4.3"
|
||||
|
||||
expect@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/expect/-/expect-23.0.0.tgz#2c3ab0a44dae319e00a73e3561762768d03a2b27"
|
||||
expect@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/expect/-/expect-23.0.1.tgz#99131f2fd9115595f8cc3697401e7f0734d45fef"
|
||||
dependencies:
|
||||
ansi-styles "^3.2.0"
|
||||
jest-diff "^23.0.0"
|
||||
jest-diff "^23.0.1"
|
||||
jest-get-type "^22.1.0"
|
||||
jest-matcher-utils "^23.0.0"
|
||||
jest-matcher-utils "^23.0.1"
|
||||
jest-message-util "^23.0.0"
|
||||
jest-regex-util "^23.0.0"
|
||||
|
||||
@ -4015,7 +4026,7 @@ icss-utils@^2.1.0:
|
||||
dependencies:
|
||||
postcss "^6.0.1"
|
||||
|
||||
ieee754@^1.1.4:
|
||||
ieee754@^1.1.11, ieee754@^1.1.4:
|
||||
version "1.1.11"
|
||||
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.11.tgz#c16384ffe00f5b7835824e67b6f2bd44a5229455"
|
||||
|
||||
@ -4563,15 +4574,15 @@ isurl@^1.0.0-alpha5:
|
||||
has-to-string-tag-x "^1.2.0"
|
||||
is-object "^1.0.1"
|
||||
|
||||
jest-changed-files@^22.2.0:
|
||||
version "22.4.3"
|
||||
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2"
|
||||
jest-changed-files@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c"
|
||||
dependencies:
|
||||
throat "^4.0.0"
|
||||
|
||||
jest-cli@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.0.0.tgz#29287498c9d844dcda5aaf011a4c82f9a888836e"
|
||||
jest-cli@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.0.1.tgz#351a5ba51cf28ecf20336d97a30b970d1f530a56"
|
||||
dependencies:
|
||||
ansi-escapes "^3.0.0"
|
||||
chalk "^2.0.1"
|
||||
@ -4584,20 +4595,20 @@ jest-cli@^23.0.0:
|
||||
istanbul-lib-coverage "^1.2.0"
|
||||
istanbul-lib-instrument "^1.10.1"
|
||||
istanbul-lib-source-maps "^1.2.4"
|
||||
jest-changed-files "^22.2.0"
|
||||
jest-config "^23.0.0"
|
||||
jest-environment-jsdom "^23.0.0"
|
||||
jest-changed-files "^23.0.1"
|
||||
jest-config "^23.0.1"
|
||||
jest-environment-jsdom "^23.0.1"
|
||||
jest-get-type "^22.1.0"
|
||||
jest-haste-map "^23.0.0"
|
||||
jest-haste-map "^23.0.1"
|
||||
jest-message-util "^23.0.0"
|
||||
jest-regex-util "^23.0.0"
|
||||
jest-resolve-dependencies "^23.0.0"
|
||||
jest-runner "^23.0.0"
|
||||
jest-runtime "^23.0.0"
|
||||
jest-snapshot "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
jest-validate "^23.0.0"
|
||||
jest-worker "^23.0.0"
|
||||
jest-resolve-dependencies "^23.0.1"
|
||||
jest-runner "^23.0.1"
|
||||
jest-runtime "^23.0.1"
|
||||
jest-snapshot "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
jest-validate "^23.0.1"
|
||||
jest-worker "^23.0.1"
|
||||
micromatch "^2.3.11"
|
||||
node-notifier "^5.2.1"
|
||||
realpath-native "^1.0.0"
|
||||
@ -4624,23 +4635,23 @@ jest-config@^22.4.3:
|
||||
jest-validate "^22.4.3"
|
||||
pretty-format "^22.4.3"
|
||||
|
||||
jest-config@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.0.0.tgz#9444d858873ad567376f8cfe139fd8828e8d494b"
|
||||
jest-config@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.0.1.tgz#6798bff1247c7a390b1327193305001582fc58fa"
|
||||
dependencies:
|
||||
babel-core "^6.0.0"
|
||||
babel-jest "^23.0.0"
|
||||
babel-jest "^23.0.1"
|
||||
chalk "^2.0.1"
|
||||
glob "^7.1.1"
|
||||
jest-environment-jsdom "^23.0.0"
|
||||
jest-environment-node "^23.0.0"
|
||||
jest-environment-jsdom "^23.0.1"
|
||||
jest-environment-node "^23.0.1"
|
||||
jest-get-type "^22.1.0"
|
||||
jest-jasmine2 "^23.0.0"
|
||||
jest-jasmine2 "^23.0.1"
|
||||
jest-regex-util "^23.0.0"
|
||||
jest-resolve "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
jest-validate "^23.0.0"
|
||||
pretty-format "^23.0.0"
|
||||
jest-resolve "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
jest-validate "^23.0.1"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-diff@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4651,21 +4662,28 @@ jest-diff@^22.4.3:
|
||||
jest-get-type "^22.4.3"
|
||||
pretty-format "^22.4.3"
|
||||
|
||||
jest-diff@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.0.tgz#0a00b2157f518eec338121ccf8879c529269a88e"
|
||||
jest-diff@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a"
|
||||
dependencies:
|
||||
chalk "^2.0.1"
|
||||
diff "^3.2.0"
|
||||
jest-get-type "^22.1.0"
|
||||
pretty-format "^23.0.0"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-docblock@^22.4.0:
|
||||
version "22.4.3"
|
||||
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19"
|
||||
jest-docblock@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725"
|
||||
dependencies:
|
||||
detect-newline "^2.1.0"
|
||||
|
||||
jest-each@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.0.1.tgz#a6e5dbf530afc6bf9d74792dde69d8db70f84706"
|
||||
dependencies:
|
||||
chalk "^2.0.1"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-environment-jsdom@^22.4.3:
|
||||
version "22.4.3"
|
||||
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e"
|
||||
@ -4674,12 +4692,12 @@ jest-environment-jsdom@^22.4.3:
|
||||
jest-util "^22.4.3"
|
||||
jsdom "^11.5.1"
|
||||
|
||||
jest-environment-jsdom@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.0.0.tgz#57b0f0dd263359a86d7952a4b712b3fabca1a625"
|
||||
jest-environment-jsdom@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.0.1.tgz#da689eb9358dc16e5708abb208f4eb26a439575c"
|
||||
dependencies:
|
||||
jest-mock "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
jest-mock "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
jsdom "^11.5.1"
|
||||
|
||||
jest-environment-node@^22.4.3:
|
||||
@ -4689,26 +4707,26 @@ jest-environment-node@^22.4.3:
|
||||
jest-mock "^22.4.3"
|
||||
jest-util "^22.4.3"
|
||||
|
||||
jest-environment-node@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.0.0.tgz#ef93a414a612484cf585c8b32ccc5ae30ce6095c"
|
||||
jest-environment-node@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.0.1.tgz#676b740e205f1f2be77241969e7812be824ee795"
|
||||
dependencies:
|
||||
jest-mock "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
jest-mock "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
|
||||
jest-get-type@^22.1.0, jest-get-type@^22.4.3:
|
||||
version "22.4.3"
|
||||
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
|
||||
|
||||
jest-haste-map@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.0.0.tgz#09be1c9a37c16b2e2f25398864eb2806d309ca96"
|
||||
jest-haste-map@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.0.1.tgz#cd89052abfc8cba01f560bbec09d4f36aec25d4f"
|
||||
dependencies:
|
||||
fb-watchman "^2.0.0"
|
||||
graceful-fs "^4.1.11"
|
||||
jest-docblock "^22.4.0"
|
||||
jest-serializer "^23.0.0"
|
||||
jest-worker "^23.0.0"
|
||||
jest-docblock "^23.0.1"
|
||||
jest-serializer "^23.0.1"
|
||||
jest-worker "^23.0.1"
|
||||
micromatch "^2.3.11"
|
||||
sane "^2.0.0"
|
||||
|
||||
@ -4728,26 +4746,27 @@ jest-jasmine2@^22.4.3:
|
||||
jest-util "^22.4.3"
|
||||
source-map-support "^0.5.0"
|
||||
|
||||
jest-jasmine2@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.0.0.tgz#ea26f87b5c223e1a70985032f0727d8f855e59df"
|
||||
jest-jasmine2@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.0.1.tgz#16d875356e6360872bba48426f7d31fdc1b0bcea"
|
||||
dependencies:
|
||||
chalk "^2.0.1"
|
||||
co "^4.6.0"
|
||||
expect "^23.0.0"
|
||||
expect "^23.0.1"
|
||||
is-generator-fn "^1.0.0"
|
||||
jest-diff "^23.0.0"
|
||||
jest-matcher-utils "^23.0.0"
|
||||
jest-diff "^23.0.1"
|
||||
jest-each "^23.0.1"
|
||||
jest-matcher-utils "^23.0.1"
|
||||
jest-message-util "^23.0.0"
|
||||
jest-snapshot "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
pretty-format "^23.0.0"
|
||||
jest-snapshot "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-leak-detector@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.0.tgz#ec93d755b21e8b2c4c4e59b8cccab1805a704ab3"
|
||||
jest-leak-detector@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0"
|
||||
dependencies:
|
||||
pretty-format "^23.0.0"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-matcher-utils@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4757,13 +4776,13 @@ jest-matcher-utils@^22.4.3:
|
||||
jest-get-type "^22.4.3"
|
||||
pretty-format "^22.4.3"
|
||||
|
||||
jest-matcher-utils@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.0.tgz#ca2168fe5a7a416c0d7f2916e969e89dcce9d92a"
|
||||
jest-matcher-utils@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f"
|
||||
dependencies:
|
||||
chalk "^2.0.1"
|
||||
jest-get-type "^22.1.0"
|
||||
pretty-format "^23.0.0"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-message-util@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4789,9 +4808,9 @@ jest-mock@^22.4.3:
|
||||
version "22.4.3"
|
||||
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7"
|
||||
|
||||
jest-mock@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.0.0.tgz#d9d897a1b74dc05c66a737213931496215897dd8"
|
||||
jest-mock@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.0.1.tgz#1569f477968c668fc728273a17c3767773b46357"
|
||||
|
||||
jest-regex-util@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4801,12 +4820,12 @@ jest-regex-util@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76"
|
||||
|
||||
jest-resolve-dependencies@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.0.tgz#c3e1cfee0e543dee10e6ec0628df69cd239244c9"
|
||||
jest-resolve-dependencies@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d"
|
||||
dependencies:
|
||||
jest-regex-util "^23.0.0"
|
||||
jest-snapshot "^23.0.0"
|
||||
jest-snapshot "^23.0.1"
|
||||
|
||||
jest-resolve@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4815,51 +4834,51 @@ jest-resolve@^22.4.3:
|
||||
browser-resolve "^1.11.2"
|
||||
chalk "^2.0.1"
|
||||
|
||||
jest-resolve@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.0.0.tgz#f04362fd0531b4546399df76c55c3214a9f45e02"
|
||||
jest-resolve@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.0.1.tgz#3f8403462b10a34c2df1d47aab5574c4935bcd24"
|
||||
dependencies:
|
||||
browser-resolve "^1.11.2"
|
||||
chalk "^2.0.1"
|
||||
realpath-native "^1.0.0"
|
||||
|
||||
jest-runner@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.0.0.tgz#b198a2dd78d57a2c0f3f8d7c7f97b62673922020"
|
||||
jest-runner@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.0.1.tgz#b176ae3ecf9e194aa4b84a7fcf70d1b8db231aa7"
|
||||
dependencies:
|
||||
exit "^0.1.2"
|
||||
graceful-fs "^4.1.11"
|
||||
jest-config "^23.0.0"
|
||||
jest-docblock "^22.4.0"
|
||||
jest-haste-map "^23.0.0"
|
||||
jest-jasmine2 "^23.0.0"
|
||||
jest-leak-detector "^23.0.0"
|
||||
jest-config "^23.0.1"
|
||||
jest-docblock "^23.0.1"
|
||||
jest-haste-map "^23.0.1"
|
||||
jest-jasmine2 "^23.0.1"
|
||||
jest-leak-detector "^23.0.1"
|
||||
jest-message-util "^23.0.0"
|
||||
jest-runtime "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
jest-worker "^23.0.0"
|
||||
jest-runtime "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
jest-worker "^23.0.1"
|
||||
source-map-support "^0.5.6"
|
||||
throat "^4.0.0"
|
||||
|
||||
jest-runtime@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.0.0.tgz#8619227fe2e01603d542b9101dd3e64ef4593f66"
|
||||
jest-runtime@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.0.1.tgz#b1d765fb03fb6d4043805af270676a693f504d57"
|
||||
dependencies:
|
||||
babel-core "^6.0.0"
|
||||
babel-plugin-istanbul "^4.1.6"
|
||||
chalk "^2.0.1"
|
||||
convert-source-map "^1.4.0"
|
||||
exit "^0.1.2"
|
||||
fast-json-stable-stringify "^2.0.0"
|
||||
graceful-fs "^4.1.11"
|
||||
jest-config "^23.0.0"
|
||||
jest-haste-map "^23.0.0"
|
||||
jest-config "^23.0.1"
|
||||
jest-haste-map "^23.0.1"
|
||||
jest-message-util "^23.0.0"
|
||||
jest-regex-util "^23.0.0"
|
||||
jest-resolve "^23.0.0"
|
||||
jest-snapshot "^23.0.0"
|
||||
jest-util "^23.0.0"
|
||||
jest-validate "^23.0.0"
|
||||
json-stable-stringify "^1.0.1"
|
||||
jest-resolve "^23.0.1"
|
||||
jest-snapshot "^23.0.1"
|
||||
jest-util "^23.0.1"
|
||||
jest-validate "^23.0.1"
|
||||
micromatch "^2.3.11"
|
||||
realpath-native "^1.0.0"
|
||||
slash "^1.0.0"
|
||||
@ -4873,9 +4892,9 @@ jest-serializer-vue@^1.0.0:
|
||||
dependencies:
|
||||
pretty "2.0.0"
|
||||
|
||||
jest-serializer@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.0.tgz#263411ac92e1e3dde243858642bb04e8a986e8ca"
|
||||
jest-serializer@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165"
|
||||
|
||||
jest-snapshot@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4888,16 +4907,16 @@ jest-snapshot@^22.4.3:
|
||||
natural-compare "^1.4.0"
|
||||
pretty-format "^22.4.3"
|
||||
|
||||
jest-snapshot@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.0.tgz#49cdb92a69b9999dbf92e0634d5ba1e8a8586803"
|
||||
jest-snapshot@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e"
|
||||
dependencies:
|
||||
chalk "^2.0.1"
|
||||
jest-diff "^23.0.0"
|
||||
jest-matcher-utils "^23.0.0"
|
||||
jest-diff "^23.0.1"
|
||||
jest-matcher-utils "^23.0.1"
|
||||
mkdirp "^0.5.1"
|
||||
natural-compare "^1.4.0"
|
||||
pretty-format "^23.0.0"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-util@^22.4.3:
|
||||
version "22.4.3"
|
||||
@ -4911,9 +4930,9 @@ jest-util@^22.4.3:
|
||||
mkdirp "^0.5.1"
|
||||
source-map "^0.6.0"
|
||||
|
||||
jest-util@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.0.0.tgz#86386800ffbe3fe17a06320e0cf9ca9b7868263b"
|
||||
jest-util@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.0.1.tgz#68ea5bd7edb177d3059f9797259f8e0dacce2f99"
|
||||
dependencies:
|
||||
callsites "^2.0.0"
|
||||
chalk "^2.0.1"
|
||||
@ -4933,27 +4952,27 @@ jest-validate@^22.4.0, jest-validate@^22.4.3:
|
||||
leven "^2.1.0"
|
||||
pretty-format "^22.4.3"
|
||||
|
||||
jest-validate@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.0.tgz#f88bc897b6cc376979aff0262d1025df1302d520"
|
||||
jest-validate@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f"
|
||||
dependencies:
|
||||
chalk "^2.0.1"
|
||||
jest-get-type "^22.1.0"
|
||||
leven "^2.1.0"
|
||||
pretty-format "^23.0.0"
|
||||
pretty-format "^23.0.1"
|
||||
|
||||
jest-worker@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.0.tgz#e6b1378b81f8e6a108f3be33a1faa830c22ea450"
|
||||
jest-worker@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc"
|
||||
dependencies:
|
||||
merge-stream "^1.0.1"
|
||||
|
||||
jest@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jest/-/jest-23.0.0.tgz#9282980309f5cde27aadc59ae583f1117c0e4430"
|
||||
jest@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/jest/-/jest-23.0.1.tgz#0d083290ee4112cecfb780df6ff81332ed373201"
|
||||
dependencies:
|
||||
import-local "^1.0.0"
|
||||
jest-cli "^23.0.0"
|
||||
jest-cli "^23.0.1"
|
||||
|
||||
js-base64@^2.1.9:
|
||||
version "2.4.3"
|
||||
@ -5073,7 +5092,7 @@ json-buffer@3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
|
||||
|
||||
json-parse-better-errors@^1.0.1:
|
||||
json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
|
||||
|
||||
@ -5089,12 +5108,6 @@ json-stable-stringify-without-jsonify@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
|
||||
|
||||
json-stable-stringify@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
|
||||
dependencies:
|
||||
jsonify "~0.0.0"
|
||||
|
||||
json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
|
||||
version "5.0.1"
|
||||
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
||||
@ -5109,10 +5122,6 @@ jsonfile@^4.0.0:
|
||||
optionalDependencies:
|
||||
graceful-fs "^4.1.6"
|
||||
|
||||
jsonify@~0.0.0:
|
||||
version "0.0.0"
|
||||
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
|
||||
|
||||
jsprim@^1.2.2:
|
||||
version "1.4.1"
|
||||
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
||||
@ -5560,6 +5569,10 @@ makeerror@1.0.x:
|
||||
dependencies:
|
||||
tmpl "1.0.x"
|
||||
|
||||
mamacro@^0.0.3:
|
||||
version "0.0.3"
|
||||
resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
|
||||
|
||||
map-cache@^0.2.2:
|
||||
version "0.2.2"
|
||||
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
|
||||
@ -7105,9 +7118,9 @@ pretty-format@^22.4.3:
|
||||
ansi-regex "^3.0.0"
|
||||
ansi-styles "^3.2.0"
|
||||
|
||||
pretty-format@^23.0.0:
|
||||
version "23.0.0"
|
||||
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.0.tgz#b66dc584a0907b1969783c4c20e4d1180b18ac75"
|
||||
pretty-format@^23.0.1:
|
||||
version "23.0.1"
|
||||
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4"
|
||||
dependencies:
|
||||
ansi-regex "^3.0.0"
|
||||
ansi-styles "^3.2.0"
|
||||
@ -8770,9 +8783,9 @@ validate-npm-package-license@^3.0.1:
|
||||
spdx-correct "^3.0.0"
|
||||
spdx-expression-parse "^3.0.0"
|
||||
|
||||
vant-doc@1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/vant-doc/-/vant-doc-1.0.4.tgz#518182a4f0cb52b90e430474d4b4432d95306d31"
|
||||
vant-doc@1.0.6:
|
||||
version "1.0.6"
|
||||
resolved "https://registry.yarnpkg.com/vant-doc/-/vant-doc-1.0.6.tgz#419f21d2384dcbf41fea1c2dfdd1fd4d453931ba"
|
||||
dependencies:
|
||||
cheerio "0.22.0"
|
||||
decamelize "^1.2.0"
|
||||
@ -8868,9 +8881,9 @@ vue-lazyload@^1.2.3:
|
||||
version "1.2.3"
|
||||
resolved "https://registry.yarnpkg.com/vue-lazyload/-/vue-lazyload-1.2.3.tgz#901f9ec15c7e6ca78781a2bae4a343686bdedb2c"
|
||||
|
||||
vue-loader@^15.2.0:
|
||||
version "15.2.0"
|
||||
resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.2.0.tgz#5a8138e490a1040942d2f10ae68fa72b5a923364"
|
||||
vue-loader@^15.2.2:
|
||||
version "15.2.2"
|
||||
resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.2.2.tgz#d845fef2eca64e91042e66315119536e17f1538d"
|
||||
dependencies:
|
||||
"@vue/component-compiler-utils" "^1.2.1"
|
||||
hash-sum "^1.0.2"
|
||||
@ -8950,16 +8963,6 @@ watchpack@^1.5.0:
|
||||
graceful-fs "^4.1.2"
|
||||
neo-async "^2.5.0"
|
||||
|
||||
webassemblyjs@1.4.3:
|
||||
version "1.4.3"
|
||||
resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.4.3.tgz#0591893efb8fbde74498251cbe4b2d83df9239cb"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/validation" "1.4.3"
|
||||
"@webassemblyjs/wasm-parser" "1.4.3"
|
||||
"@webassemblyjs/wast-parser" "1.4.3"
|
||||
long "^3.2.0"
|
||||
|
||||
webidl-conversions@^4.0.1, webidl-conversions@^4.0.2:
|
||||
version "4.0.2"
|
||||
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
|
||||
@ -9069,13 +9072,14 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0:
|
||||
source-list-map "^2.0.0"
|
||||
source-map "~0.6.1"
|
||||
|
||||
webpack@^4.8.3:
|
||||
version "4.8.3"
|
||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.3.tgz#957c8e80000f9e5cc03d775e78b472d8954f4eeb"
|
||||
webpack@^4.10.0:
|
||||
version "4.10.0"
|
||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.10.0.tgz#bc7a274afdb5556f9cbe836778abbca283c52938"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.4.3"
|
||||
"@webassemblyjs/wasm-edit" "1.4.3"
|
||||
"@webassemblyjs/wasm-parser" "1.4.3"
|
||||
"@webassemblyjs/ast" "1.5.8"
|
||||
"@webassemblyjs/wasm-edit" "1.5.8"
|
||||
"@webassemblyjs/wasm-opt" "1.5.8"
|
||||
"@webassemblyjs/wasm-parser" "1.5.8"
|
||||
acorn "^5.0.0"
|
||||
acorn-dynamic-import "^3.0.0"
|
||||
ajv "^6.1.0"
|
||||
@ -9083,6 +9087,7 @@ webpack@^4.8.3:
|
||||
chrome-trace-event "^0.1.1"
|
||||
enhanced-resolve "^4.0.0"
|
||||
eslint-scope "^3.7.1"
|
||||
json-parse-better-errors "^1.0.2"
|
||||
loader-runner "^2.3.0"
|
||||
loader-utils "^1.1.0"
|
||||
memory-fs "~0.4.1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user