diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 381c24d0..09842dc2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -17,6 +17,25 @@ jobs:
- name: Run linter
run: npm run lint
+ test:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - uses: actions/setup-node@v1
+ with:
+ node-version: '14.x'
+
+ - name: Install dependencies
+ uses: bahmutov/npm-install@v1
+
+ - name: Run test cases
+ run: npm test
+
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v1
+ with:
+ token: ${{ secrets.CODECOV_TOKEN }}
+
build:
runs-on: ubuntu-latest
steps:
diff --git a/babel.config.js b/babel.config.js
index 03a17be7..75cf371a 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -8,4 +8,10 @@ module.exports = {
},
],
],
+ env: {
+ test: {
+ presets: ['@babel/preset-typescript'],
+ plugins: ['@babel/plugin-transform-modules-commonjs'],
+ },
+ },
};
diff --git a/build/compiler.js b/build/compiler.js
index 5678e334..d5d05da9 100644
--- a/build/compiler.js
+++ b/build/compiler.js
@@ -22,8 +22,12 @@ const baseCssPath = path.resolve(__dirname, '../packages/common/index.wxss');
const lessCompiler = (dist) =>
function compileLess() {
+ const srcPath = [`${src}/**/*.less`];
+ if ([esDir, libDir].indexOf(dist) !== -1) {
+ srcPath.push(`!${src}/**/demo/**/*.less`);
+ }
return gulp
- .src(`${src}/**/*.less`)
+ .src(srcPath)
.pipe(less())
.pipe(postcss())
.pipe(
@@ -52,7 +56,21 @@ const tsCompiler = (dist, config) =>
const copier = (dist, ext) =>
function copy() {
- return gulp.src(`${src}/**/*.${ext}`).pipe(gulp.dest(dist));
+ const srcPath = [`${src}/**/*.${ext}`];
+ if ([esDir, libDir].indexOf(dist) !== -1) {
+ srcPath.push(`!${src}/**/demo/**/*.${ext}`);
+ }
+ return gulp
+ .src(srcPath)
+ .pipe(
+ insert.transform((contents, file) => {
+ if (ext === 'json' && file.path.includes('/demo/')) {
+ contents = contents.replace('/example', '');
+ }
+ return contents;
+ })
+ )
+ .pipe(gulp.dest(dist));
};
const staticCopier = (dist) =>
diff --git a/example/app.json b/example/app.json
index 1410d9a2..7faa92e4 100644
--- a/example/app.json
+++ b/example/app.json
@@ -66,6 +66,7 @@
"van-action-sheet": "./dist/action-sheet/index",
"van-area": "./dist/area/index",
"van-button": "./dist/button/index",
+ "van-button-demo": "./dist/button/demo/index",
"van-card": "./dist/card/index",
"van-cell": "./dist/cell/index",
"van-cell-group": "./dist/cell-group/index",
diff --git a/example/pages/button/index.wxml b/example/pages/button/index.wxml
index f9dce720..e0638ef8 100644
--- a/example/pages/button/index.wxml
+++ b/example/pages/button/index.wxml
@@ -1,59 +1 @@
-
-
- 默认按钮
- 主要按钮
- 信息按钮
-
- 危险按钮
- 警告按钮
-
-
-
- 朴素按钮
- 朴素按钮
-
-
-
- 细边框按钮
- 细边框按钮
-
-
-
- 禁用状态
- 禁用状态
-
-
-
-
-
-
-
-
-
- 方形按钮
- 圆形按钮
-
-
-
-
- 按钮
- 按钮
-
-
-
- 大号按钮
- 普通按钮
- 小型按钮
- 迷你按钮
-
-
-
- 普通按钮
- 块级元素
-
-
-
- 单色按钮
- 单色按钮
- 渐变色按钮
-
+
diff --git a/example/pages/button/index.wxss b/example/pages/button/index.wxss
deleted file mode 100644
index a5c4a026..00000000
--- a/example/pages/button/index.wxss
+++ /dev/null
@@ -1,4 +0,0 @@
-.row {
- height: 44px;
- margin-bottom: 15px;
-}
diff --git a/jest.config.js b/jest.config.js
new file mode 100644
index 00000000..74cac21c
--- /dev/null
+++ b/jest.config.js
@@ -0,0 +1,18 @@
+module.exports = {
+ bail: 1,
+ verbose: true,
+ testEnvironment: 'jsdom',
+ testURL: 'https://jest.test',
+ moduleFileExtensions: ['js', 'ts'],
+ testMatch: ['/packages/**/test/**/*.spec.{js,ts}'],
+ transform: {
+ "^.+\\.jsx?$": "babel-jest", // Adding this line solved the issue
+ "^.+\\.tsx?$": "ts-jest"
+ },
+ collectCoverageFrom: [
+ '/packages/**/*.{js,ts}',
+ '!**/test/**'
+ ],
+ preset: "ts-jest",
+ snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin'],
+}
diff --git a/package.json b/package.json
index 5f224aa8..6d8e4114 100644
--- a/package.json
+++ b/package.json
@@ -17,7 +17,8 @@
"release:site": "vant-cli build-site && gh-pages -d site-dist --add",
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
"build:changelog": "vant-cli changelog",
- "upload:weapp": "node build/upload.js"
+ "upload:weapp": "node build/upload.js",
+ "test": "jest"
},
"files": [
"dist",
@@ -39,18 +40,25 @@
},
"homepage": "https://github.com/youzan/vant-weapp#readme",
"devDependencies": {
+ "@babel/plugin-transform-modules-commonjs": "^7.16.0",
+ "@babel/preset-typescript": "^7.16.0",
+ "@types/jest": "^27.0.2",
"@vant/cli": "^4.0.0-beta.7",
"@vant/icons": "^1.7.1",
+ "@vue/compiler-sfc": "^3.2.13",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-less": "^5.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
+ "jest": "^27.3.1",
"miniprogram-api-typings": "^3.1.6",
"miniprogram-ci": "^1.6.1",
+ "miniprogram-simulate": "^1.4.2",
+ "ts-jest": "^27.0.7",
"tscpaths": "^0.0.9",
- "vue": "^3.2.1",
- "@vue/compiler-sfc": "^3.2.13"
+ "typescript": "^4.4.4",
+ "vue": "^3.2.1"
},
"browserslist": [
"Chrome >= 53",
diff --git a/packages/button/demo/index.json b/packages/button/demo/index.json
new file mode 100644
index 00000000..26dfdf19
--- /dev/null
+++ b/packages/button/demo/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../../button/index",
+ "demo-block": "../../../example/components/demo-block/index"
+ }
+}
diff --git a/packages/button/demo/index.less b/packages/button/demo/index.less
new file mode 100644
index 00000000..0940fff0
--- /dev/null
+++ b/packages/button/demo/index.less
@@ -0,0 +1,17 @@
+.row {
+ height: 44px;
+ margin-bottom: 15px;
+}
+
+.demo-margin-left {
+ margin-left: 10px;
+}
+
+.demo-margin-right {
+ margin-right: 10px;
+}
+
+.demo-margin-bottom {
+ display: block;
+ margin-bottom: 15px;
+}
diff --git a/packages/button/demo/index.ts b/packages/button/demo/index.ts
new file mode 100644
index 00000000..a32755a5
--- /dev/null
+++ b/packages/button/demo/index.ts
@@ -0,0 +1,5 @@
+import { VantComponent } from '../../common/component';
+
+VantComponent({
+ data: {},
+});
diff --git a/packages/button/demo/index.wxml b/packages/button/demo/index.wxml
new file mode 100644
index 00000000..f9dce720
--- /dev/null
+++ b/packages/button/demo/index.wxml
@@ -0,0 +1,59 @@
+
+
+ 默认按钮
+ 主要按钮
+ 信息按钮
+
+ 危险按钮
+ 警告按钮
+
+
+
+ 朴素按钮
+ 朴素按钮
+
+
+
+ 细边框按钮
+ 细边框按钮
+
+
+
+ 禁用状态
+ 禁用状态
+
+
+
+
+
+
+
+
+
+ 方形按钮
+ 圆形按钮
+
+
+
+
+ 按钮
+ 按钮
+
+
+
+ 大号按钮
+ 普通按钮
+ 小型按钮
+ 迷你按钮
+
+
+
+ 普通按钮
+ 块级元素
+
+
+
+ 单色按钮
+ 单色按钮
+ 渐变色按钮
+
diff --git a/packages/button/test/__snapshots__/demo.spec.ts.snap b/packages/button/test/__snapshots__/demo.spec.ts.snap
new file mode 100644
index 00000000..1147a106
--- /dev/null
+++ b/packages/button/test/__snapshots__/demo.spec.ts.snap
@@ -0,0 +1,1188 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`should render demo and match snapshot 1`] = `
+
+
+
+
+ 按钮类型
+
+
+
+
+
+ 默认按钮
+
+
+
+
+
+
+ 主要按钮
+
+
+
+
+
+
+ 信息按钮
+
+
+
+
+
+
+
+ 危险按钮
+
+
+
+
+
+
+ 警告按钮
+
+
+
+
+
+
+
+
+ 朴素按钮
+
+
+
+
+ 朴素按钮
+
+
+
+
+
+
+ 朴素按钮
+
+
+
+
+
+
+
+
+ 细边框
+
+
+
+
+ 细边框按钮
+
+
+
+
+
+
+ 细边框按钮
+
+
+
+
+
+
+
+
+ 禁用状态
+
+
+
+
+ 禁用状态
+
+
+
+
+
+
+ 禁用状态
+
+
+
+
+
+
+
+
+ 加载状态
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 加载中...
+
+
+
+
+
+
+
+
+
+ 按钮形状
+
+
+
+
+ 方形按钮
+
+
+
+
+
+
+ 圆形按钮
+
+
+
+
+
+
+
+
+ 图标按钮
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 按钮
+
+
+
+
+
+
+
+
+
+
+
+ 按钮
+
+
+
+
+
+
+
+
+ 按钮尺寸
+
+
+
+
+ 大号按钮
+
+
+
+
+
+
+ 普通按钮
+
+
+
+
+
+
+ 小型按钮
+
+
+
+
+
+
+ 迷你按钮
+
+
+
+
+
+
+
+
+ 块级元素
+
+
+
+
+ 普通按钮
+
+
+
+
+
+
+ 块级元素
+
+
+
+
+
+
+
+
+ 自定义颜色
+
+
+
+
+ 单色按钮
+
+
+
+
+
+
+ 单色按钮
+
+
+
+
+
+
+ 渐变色按钮
+
+
+
+
+
+
+`;
diff --git a/packages/button/test/demo.spec.ts b/packages/button/test/demo.spec.ts
new file mode 100644
index 00000000..4c3798cb
--- /dev/null
+++ b/packages/button/test/demo.spec.ts
@@ -0,0 +1,11 @@
+import path from 'path';
+import simulate from 'miniprogram-simulate';
+
+test('should render demo and match snapshot', () => {
+ const id = simulate.load(path.resolve(__dirname, '../demo/index'), {
+ rootPath: path.resolve(__dirname, '../../'),
+ });
+ const comp = simulate.render(id);
+ comp.attach(document.createElement('parent-wrapper'));
+ expect(comp.toJSON()).toMatchSnapshot();
+});
diff --git a/packages/button/test/index.spec.ts b/packages/button/test/index.spec.ts
new file mode 100644
index 00000000..0cfe7b17
--- /dev/null
+++ b/packages/button/test/index.spec.ts
@@ -0,0 +1,68 @@
+import path from 'path';
+import simulate from 'miniprogram-simulate';
+
+describe('button', () => {
+ const VanButton = simulate.load(
+ path.resolve(__dirname, '../../button/index'),
+ 'van-button',
+ {
+ rootPath: path.resolve(__dirname, '../../'),
+ }
+ );
+
+ test('should emit click event', async () => {
+ const comp = simulate.render(
+ simulate.load({
+ usingComponents: {
+ 'van-button': VanButton,
+ },
+ template: ``,
+ data: {
+ tapValue: 0,
+ },
+ methods: {
+ onClick() {
+ this.setData({
+ tapValue: this.data.tapValue + 1,
+ });
+ },
+ },
+ })
+ );
+ comp.attach(document.createElement('parent-wrapper'));
+
+ const wrapper = comp.querySelector('#wrapper');
+ const btn = wrapper?.querySelector('.van-button');
+ btn?.dispatchEvent('tap');
+ await simulate.sleep(10);
+ expect(comp.data.tapValue).toEqual(1);
+ });
+
+ test('should not emit click event when disabled', async () => {
+ const comp = simulate.render(
+ simulate.load({
+ usingComponents: {
+ 'van-button': VanButton,
+ },
+ template: ``,
+ data: {
+ tapValue: 0,
+ },
+ methods: {
+ onClick() {
+ this.setData({
+ tapValue: this.data.tapValue + 1,
+ });
+ },
+ },
+ })
+ );
+ comp.attach(document.createElement('parent-wrapper'));
+
+ const wrapper = comp.querySelector('#wrapper');
+ const btn = wrapper?.querySelector('.van-button');
+ btn?.dispatchEvent('tap');
+ await simulate.sleep(10);
+ expect(comp.data.tapValue).toEqual(0);
+ });
+});
diff --git a/tsconfig.example.json b/tsconfig.example.json
index 69eb3244..f2d30248 100644
--- a/tsconfig.example.json
+++ b/tsconfig.example.json
@@ -3,5 +3,6 @@
"compilerOptions": {
"watch": true,
"outDir": "example/dist"
- }
+ },
+ "exclude": ["packages/**/test/*"]
}
diff --git a/tsconfig.json b/tsconfig.json
index b5641810..edbf1c2e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -8,12 +8,14 @@
"outDir": "dist",
"baseUrl": ".",
"strict": true,
- "lib": ["ESNext"],
- "types": ["miniprogram-api-typings"],
+ "lib": ["ESNext", "dom"],
+ "types": ["@types/jest", "node", "miniprogram-api-typings"],
"paths": {
"definitions/*": ["./packages/definitions/*"]
},
+ "moduleResolution": "node",
"skipLibCheck": true
},
- "include": ["packages/**/*"]
+ "include": ["packages/**/*"],
+ "exclude": ["packages/**/test/*", "packages/**/demo/*"]
}
diff --git a/yarn.lock b/yarn.lock
index 927f3ad6..add4876f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -139,6 +139,13 @@
dependencies:
"@babel/highlight" "^7.14.5"
+"@babel/code-frame@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431"
+ integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==
+ dependencies:
+ "@babel/highlight" "^7.16.0"
+
"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.15.0":
version "7.15.0"
resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176"
@@ -196,6 +203,15 @@
jsesc "^2.5.1"
source-map "^0.5.0"
+"@babel/generator@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz#d40f3d1d5075e62d3500bccb67f3daa8a95265b2"
+ integrity sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==
+ dependencies:
+ "@babel/types" "^7.16.0"
+ jsesc "^2.5.1"
+ source-map "^0.5.0"
+
"@babel/helper-annotate-as-pure@^7.14.5", "@babel/helper-annotate-as-pure@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835"
@@ -203,6 +219,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-annotate-as-pure@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d"
+ integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191"
@@ -233,6 +256,18 @@
"@babel/helper-replace-supers" "^7.15.4"
"@babel/helper-split-export-declaration" "^7.15.4"
+"@babel/helper-create-class-features-plugin@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz#090d4d166b342a03a9fec37ef4fd5aeb9c7c6a4b"
+ integrity sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.16.0"
+ "@babel/helper-function-name" "^7.16.0"
+ "@babel/helper-member-expression-to-functions" "^7.16.0"
+ "@babel/helper-optimise-call-expression" "^7.16.0"
+ "@babel/helper-replace-supers" "^7.16.0"
+ "@babel/helper-split-export-declaration" "^7.16.0"
+
"@babel/helper-create-regexp-features-plugin@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4"
@@ -271,6 +306,15 @@
"@babel/template" "^7.15.4"
"@babel/types" "^7.15.4"
+"@babel/helper-function-name@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481"
+ integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.16.0"
+ "@babel/template" "^7.16.0"
+ "@babel/types" "^7.16.0"
+
"@babel/helper-get-function-arity@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b"
@@ -278,6 +322,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-get-function-arity@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa"
+ integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-hoist-variables@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df"
@@ -285,6 +336,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-hoist-variables@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a"
+ integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-member-expression-to-functions@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef"
@@ -292,6 +350,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-member-expression-to-functions@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz#29287040efd197c77636ef75188e81da8bccd5a4"
+ integrity sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-module-imports@7.12.1":
version "7.12.1"
resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz#1644c01591a15a2f084dd6d092d9430eb1d1216c"
@@ -306,6 +371,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-module-imports@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3"
+ integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.4":
version "7.15.7"
resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.7.tgz#7da80c8cbc1f02655d83f8b79d25866afe50d226"
@@ -320,6 +392,20 @@
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.6"
+"@babel/helper-module-transforms@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz#1c82a8dd4cb34577502ebd2909699b194c3e9bb5"
+ integrity sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==
+ dependencies:
+ "@babel/helper-module-imports" "^7.16.0"
+ "@babel/helper-replace-supers" "^7.16.0"
+ "@babel/helper-simple-access" "^7.16.0"
+ "@babel/helper-split-export-declaration" "^7.16.0"
+ "@babel/helper-validator-identifier" "^7.15.7"
+ "@babel/template" "^7.16.0"
+ "@babel/traverse" "^7.16.0"
+ "@babel/types" "^7.16.0"
+
"@babel/helper-optimise-call-expression@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171"
@@ -327,6 +413,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-optimise-call-expression@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz#cecdb145d70c54096b1564f8e9f10cd7d193b338"
+ integrity sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
@@ -351,6 +444,16 @@
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.4"
+"@babel/helper-replace-supers@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz#73055e8d3cf9bcba8ddb55cad93fedc860f68f17"
+ integrity sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.16.0"
+ "@babel/helper-optimise-call-expression" "^7.16.0"
+ "@babel/traverse" "^7.16.0"
+ "@babel/types" "^7.16.0"
+
"@babel/helper-simple-access@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b"
@@ -358,6 +461,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-simple-access@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz#21d6a27620e383e37534cf6c10bba019a6f90517"
+ integrity sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb"
@@ -372,6 +482,13 @@
dependencies:
"@babel/types" "^7.15.4"
+"@babel/helper-split-export-declaration@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438"
+ integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==
+ dependencies:
+ "@babel/types" "^7.16.0"
+
"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7":
version "7.15.7"
resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389"
@@ -419,11 +536,25 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
+"@babel/highlight@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a"
+ integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.15.7"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
+
"@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.3", "@babel/parser@^7.15.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.7.2":
version "7.15.7"
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.15.7.tgz#0c3ed4a2eb07b165dfa85b3cc45c727334c4edae"
integrity sha512-rycZXvQ+xS9QyIcJ9HXeDWf1uxqlbVFAUq0Rq0dbc50Zb/+wUe/ehyfzGfm9KZZF0kBejYgxltBXocP+gKdL2g==
+"@babel/parser@^7.16.0":
+ version "7.16.2"
+ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.16.2.tgz#3723cd5c8d8773eef96ce57ea1d9b7faaccd12ac"
+ integrity sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==
+
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz#dbdeabb1e80f622d9f0b583efb2999605e0a567e"
@@ -802,6 +933,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
+"@babel/plugin-syntax-typescript@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz#2feeb13d9334cc582ea9111d3506f773174179bb"
+ integrity sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
"@babel/plugin-transform-arrow-functions@^7.12.1", "@babel/plugin-transform-arrow-functions@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a"
@@ -930,6 +1068,16 @@
"@babel/helper-simple-access" "^7.15.4"
babel-plugin-dynamic-import-node "^2.3.3"
+"@babel/plugin-transform-modules-commonjs@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz#add58e638c8ddc4875bd9a9ecb5c594613f6c922"
+ integrity sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.16.0"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-simple-access" "^7.16.0"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
"@babel/plugin-transform-modules-systemjs@^7.12.1", "@babel/plugin-transform-modules-systemjs@^7.15.4":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz#b42890c7349a78c827719f1d2d0cd38c7d268132"
@@ -1054,6 +1202,15 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript" "^7.14.5"
+"@babel/plugin-transform-typescript@^7.16.0":
+ version "7.16.1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz#cc0670b2822b0338355bc1b3d2246a42b8166409"
+ integrity sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.16.0"
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/plugin-syntax-typescript" "^7.16.0"
+
"@babel/plugin-transform-unicode-escapes@^7.12.1", "@babel/plugin-transform-unicode-escapes@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b"
@@ -1240,6 +1397,15 @@
"@babel/helper-validator-option" "^7.14.5"
"@babel/plugin-transform-typescript" "^7.15.0"
+"@babel/preset-typescript@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz#b0b4f105b855fb3d631ec036cdc9d1ffd1fa5eac"
+ integrity sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+ "@babel/helper-validator-option" "^7.14.5"
+ "@babel/plugin-transform-typescript" "^7.16.0"
+
"@babel/runtime@7.12.1":
version "7.12.1"
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740"
@@ -1263,6 +1429,15 @@
"@babel/parser" "^7.15.4"
"@babel/types" "^7.15.4"
+"@babel/template@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6"
+ integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==
+ dependencies:
+ "@babel/code-frame" "^7.16.0"
+ "@babel/parser" "^7.16.0"
+ "@babel/types" "^7.16.0"
+
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.13.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2":
version "7.15.4"
resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d"
@@ -1278,6 +1453,21 @@
debug "^4.1.0"
globals "^11.1.0"
+"@babel/traverse@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.0.tgz#965df6c6bfc0a958c1e739284d3c9fa4a6e3c45b"
+ integrity sha512-qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ==
+ dependencies:
+ "@babel/code-frame" "^7.16.0"
+ "@babel/generator" "^7.16.0"
+ "@babel/helper-function-name" "^7.16.0"
+ "@babel/helper-hoist-variables" "^7.16.0"
+ "@babel/helper-split-export-declaration" "^7.16.0"
+ "@babel/parser" "^7.16.0"
+ "@babel/types" "^7.16.0"
+ debug "^4.1.0"
+ globals "^11.1.0"
+
"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.14.5", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
version "7.15.6"
resolved "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f"
@@ -1286,6 +1476,14 @@
"@babel/helper-validator-identifier" "^7.14.9"
to-fast-properties "^2.0.0"
+"@babel/types@^7.16.0":
+ version "7.16.0"
+ resolved "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba"
+ integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.15.7"
+ to-fast-properties "^2.0.0"
+
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
resolved "https://registry.npm.taobao.org/@bcoe/v8-coverage/download/@bcoe/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -1376,6 +1574,18 @@
jest-util "^27.2.3"
slash "^3.0.0"
+"@jest/console@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/console/-/console-27.3.1.tgz#e8ea3a475d3f8162f23d69efbfaa9cbe486bee93"
+ integrity sha512-RkFNWmv0iui+qsOr/29q9dyfKTTT5DCuP31kUwg7rmOKPT/ozLeGLKJKVIiOfbiKyleUZKIrHwhmiZWVe8IMdw==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ jest-message-util "^27.3.1"
+ jest-util "^27.3.1"
+ slash "^3.0.0"
+
"@jest/core@^27.2.3":
version "27.2.3"
resolved "https://registry.npmmirror.com/@jest/core/download/@jest/core-27.2.3.tgz?cache=0&sync_timestamp=1632823916014&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-27.2.3.tgz#b21a3ffb69bef017c4562d27689bb798c0194501"
@@ -1411,6 +1621,40 @@
slash "^3.0.0"
strip-ansi "^6.0.0"
+"@jest/core@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/core/-/core-27.3.1.tgz#04992ef1b58b17c459afb87ab56d81e63d386925"
+ integrity sha512-DMNE90RR5QKx0EA+wqe3/TNEwiRpOkhshKNxtLxd4rt3IZpCt+RSL+FoJsGeblRZmqdK4upHA/mKKGPPRAifhg==
+ dependencies:
+ "@jest/console" "^27.3.1"
+ "@jest/reporters" "^27.3.1"
+ "@jest/test-result" "^27.3.1"
+ "@jest/transform" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ ansi-escapes "^4.2.1"
+ chalk "^4.0.0"
+ emittery "^0.8.1"
+ exit "^0.1.2"
+ graceful-fs "^4.2.4"
+ jest-changed-files "^27.3.0"
+ jest-config "^27.3.1"
+ jest-haste-map "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-regex-util "^27.0.6"
+ jest-resolve "^27.3.1"
+ jest-resolve-dependencies "^27.3.1"
+ jest-runner "^27.3.1"
+ jest-runtime "^27.3.1"
+ jest-snapshot "^27.3.1"
+ jest-util "^27.3.1"
+ jest-validate "^27.3.1"
+ jest-watcher "^27.3.1"
+ micromatch "^4.0.4"
+ rimraf "^3.0.0"
+ slash "^3.0.0"
+ strip-ansi "^6.0.0"
+
"@jest/environment@^27.2.3":
version "27.2.3"
resolved "https://registry.npmmirror.com/@jest/environment/download/@jest/environment-27.2.3.tgz#3ae328d778a67e027bad27541d1c09ed94312609"
@@ -1421,6 +1665,16 @@
"@types/node" "*"
jest-mock "^27.2.3"
+"@jest/environment@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/environment/-/environment-27.3.1.tgz#2182defbce8d385fd51c5e7c7050f510bd4c86b1"
+ integrity sha512-BCKCj4mOVLme6Tanoyc9k0ultp3pnmuyHw73UHRPeeZxirsU/7E3HC4le/VDb/SMzE1JcPnto+XBKFOcoiJzVw==
+ dependencies:
+ "@jest/fake-timers" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ jest-mock "^27.3.0"
+
"@jest/fake-timers@^27.2.3":
version "27.2.3"
resolved "https://registry.npmmirror.com/@jest/fake-timers/download/@jest/fake-timers-27.2.3.tgz?cache=0&sync_timestamp=1632823916638&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40jest%2Ffake-timers%2Fdownload%2F%40jest%2Ffake-timers-27.2.3.tgz#21cdef9cb9edd30c80026a0176eba58f5fbcaa67"
@@ -1433,6 +1687,18 @@
jest-mock "^27.2.3"
jest-util "^27.2.3"
+"@jest/fake-timers@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.3.1.tgz#1fad860ee9b13034762cdb94266e95609dfce641"
+ integrity sha512-M3ZFgwwlqJtWZ+QkBG5NmC23A9w+A6ZxNsO5nJxJsKYt4yguBd3i8TpjQz5NfCX91nEve1KqD9RA2Q+Q1uWqoA==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ "@sinonjs/fake-timers" "^8.0.1"
+ "@types/node" "*"
+ jest-message-util "^27.3.1"
+ jest-mock "^27.3.0"
+ jest-util "^27.3.1"
+
"@jest/globals@^27.2.3":
version "27.2.3"
resolved "https://registry.npmmirror.com/@jest/globals/download/@jest/globals-27.2.3.tgz?cache=0&sync_timestamp=1632823907628&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40jest%2Fglobals%2Fdownload%2F%40jest%2Fglobals-27.2.3.tgz#6b8d652083d78709b243d9571457058f1c6c5fea"
@@ -1442,6 +1708,15 @@
"@jest/types" "^27.2.3"
expect "^27.2.3"
+"@jest/globals@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/globals/-/globals-27.3.1.tgz#ce1dfb03d379237a9da6c1b99ecfaca1922a5f9e"
+ integrity sha512-Q651FWiWQAIFiN+zS51xqhdZ8g9b88nGCobC87argAxA7nMfNQq0Q0i9zTfQYgLa6qFXk2cGANEqfK051CZ8Pg==
+ dependencies:
+ "@jest/environment" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ expect "^27.3.1"
+
"@jest/reporters@^27.2.3":
version "27.2.3"
resolved "https://registry.npmmirror.com/@jest/reporters/download/@jest/reporters-27.2.3.tgz?cache=0&sync_timestamp=1632823916038&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40jest%2Freporters%2Fdownload%2F%40jest%2Freporters-27.2.3.tgz#47c27be7c3e2069042b6fba12c1f8f62f91302db"
@@ -1472,6 +1747,37 @@
terminal-link "^2.0.0"
v8-to-istanbul "^8.1.0"
+"@jest/reporters@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-27.3.1.tgz#28b5c1f5789481e23788048fa822ed15486430b9"
+ integrity sha512-m2YxPmL9Qn1emFVgZGEiMwDntDxRRQ2D58tiDQlwYTg5GvbFOKseYCcHtn0WsI8CG4vzPglo3nqbOiT8ySBT/w==
+ dependencies:
+ "@bcoe/v8-coverage" "^0.2.3"
+ "@jest/console" "^27.3.1"
+ "@jest/test-result" "^27.3.1"
+ "@jest/transform" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ collect-v8-coverage "^1.0.0"
+ exit "^0.1.2"
+ glob "^7.1.2"
+ graceful-fs "^4.2.4"
+ istanbul-lib-coverage "^3.0.0"
+ istanbul-lib-instrument "^4.0.3"
+ istanbul-lib-report "^3.0.0"
+ istanbul-lib-source-maps "^4.0.0"
+ istanbul-reports "^3.0.2"
+ jest-haste-map "^27.3.1"
+ jest-resolve "^27.3.1"
+ jest-util "^27.3.1"
+ jest-worker "^27.3.1"
+ slash "^3.0.0"
+ source-map "^0.6.0"
+ string-length "^4.0.1"
+ terminal-link "^2.0.0"
+ v8-to-istanbul "^8.1.0"
+
"@jest/source-map@^27.0.6":
version "27.0.6"
resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f"
@@ -1491,6 +1797,16 @@
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
+"@jest/test-result@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-27.3.1.tgz#89adee8b771877c69b3b8d59f52f29dccc300194"
+ integrity sha512-mLn6Thm+w2yl0opM8J/QnPTqrfS4FoXsXF2WIWJb2O/GBSyResL71BRuMYbYRsGt7ELwS5JGcEcGb52BNrumgg==
+ dependencies:
+ "@jest/console" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ collect-v8-coverage "^1.0.0"
+
"@jest/test-sequencer@^27.2.3":
version "27.2.3"
resolved "https://registry.npmmirror.com/@jest/test-sequencer/download/@jest/test-sequencer-27.2.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-27.2.3.tgz#a9e376b91a64c6f5ab37f05e9d304340609125d7"
@@ -1501,6 +1817,16 @@
jest-haste-map "^27.2.3"
jest-runtime "^27.2.3"
+"@jest/test-sequencer@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.3.1.tgz#4b3bde2dbb05ee74afdae608cf0768e3354683b1"
+ integrity sha512-siySLo07IMEdSjA4fqEnxfIX8lB/lWYsBPwNFtkOvsFQvmBrL3yj3k3uFNZv/JDyApTakRpxbKLJ3CT8UGVCrA==
+ dependencies:
+ "@jest/test-result" "^27.3.1"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^27.3.1"
+ jest-runtime "^27.3.1"
+
"@jest/transform@^27.2.1":
version "27.2.1"
resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.2.1.tgz#743443adb84b3b7419951fc702515ce20ba6285e"
@@ -1543,6 +1869,27 @@
source-map "^0.6.1"
write-file-atomic "^3.0.0"
+"@jest/transform@^27.3.1":
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.3.1.tgz#ff80eafbeabe811e9025e4b6f452126718455220"
+ integrity sha512-3fSvQ02kuvjOI1C1ssqMVBKJpZf6nwoCiSu00zAKh5nrp3SptNtZy/8s5deayHnqxhjD9CWDJ+yqQwuQ0ZafXQ==
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^27.2.5"
+ babel-plugin-istanbul "^6.0.0"
+ chalk "^4.0.0"
+ convert-source-map "^1.4.0"
+ fast-json-stable-stringify "^2.0.0"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^27.3.1"
+ jest-regex-util "^27.0.6"
+ jest-util "^27.3.1"
+ micromatch "^4.0.4"
+ pirates "^4.0.1"
+ slash "^3.0.0"
+ source-map "^0.6.1"
+ write-file-atomic "^3.0.0"
+
"@jest/types@^27.1.1":
version "27.1.1"
resolved "https://registry.npmjs.org/@jest/types/-/types-27.1.1.tgz#77a3fc014f906c65752d12123a0134359707c0ad"
@@ -1565,6 +1912,17 @@
"@types/yargs" "^16.0.0"
chalk "^4.0.0"
+"@jest/types@^27.2.5":
+ version "27.2.5"
+ resolved "https://registry.npmjs.org/@jest/types/-/types-27.2.5.tgz#420765c052605e75686982d24b061b4cbba22132"
+ integrity sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^16.0.0"
+ chalk "^4.0.0"
+
"@jimp/bmp@^0.9.8":
version "0.9.8"
resolved "https://registry.npm.taobao.org/@jimp/bmp/download/@jimp/bmp-0.9.8.tgz#5933ab8fb359889bec380b0f7802163374933624"
@@ -2177,7 +2535,7 @@
dependencies:
"@types/istanbul-lib-report" "*"
-"@types/jest@^27.0.1":
+"@types/jest@^27.0.1", "@types/jest@^27.0.2":
version "27.0.2"
resolved "https://registry.npmjs.org/@types/jest/-/jest-27.0.2.tgz#ac383c4d4aaddd29bbf2b916d8d105c304a5fcd7"
integrity sha512-4dRxkS/AFX0c5XW6IPMNOydLn2tEhNhJV7DnYK+0bjoJZ+QTmfucBlihX7aoEsh/ocYtkLC73UbnBXBXIxsULA==
@@ -3353,6 +3711,20 @@ babel-jest@^27.2.3:
graceful-fs "^4.2.4"
slash "^3.0.0"
+babel-jest@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-27.3.1.tgz#0636a3404c68e07001e434ac4956d82da8a80022"
+ integrity sha512-SjIF8hh/ir0peae2D6S6ZKRhUy7q/DnpH7k/V6fT4Bgs/LXXUztOpX4G2tCgq8mLo5HA9mN6NmlFMeYtKmIsTQ==
+ dependencies:
+ "@jest/transform" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/babel__core" "^7.1.14"
+ babel-plugin-istanbul "^6.0.0"
+ babel-preset-jest "^27.2.0"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ slash "^3.0.0"
+
babel-messages@^6.23.0:
version "6.23.0"
resolved "https://registry.npm.taobao.org/babel-messages/download/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
@@ -4363,6 +4735,11 @@ ci-info@^3.1.1:
resolved "https://registry.npm.taobao.org/ci-info/download/ci-info-3.1.1.tgz?cache=0&sync_timestamp=1613628860338&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fci-info%2Fdownload%2Fci-info-3.1.1.tgz#9a32fcefdf7bcdb6f0a7e1c0f8098ec57897b80a"
integrity sha1-mjL87997zbbwp+HA+AmOxXiXuAo=
+ci-info@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6"
+ integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==
+
cjs-module-lexer@^1.0.0:
version "1.2.2"
resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40"
@@ -4936,6 +5313,14 @@ css-select@^4.1.3:
domutils "^2.6.0"
nth-check "^2.0.0"
+css-tree@1.0.0-alpha.29:
+ version "1.0.0-alpha.29"
+ resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"
+ integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==
+ dependencies:
+ mdn-data "~1.1.0"
+ source-map "^0.5.3"
+
css-tree@^1.1.2, css-tree@^1.1.3:
version "1.1.3"
resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
@@ -5019,6 +5404,13 @@ cssnano@^5.0.8:
lilconfig "^2.0.3"
yaml "^1.10.2"
+csso@^3.5.1:
+ version "3.5.1"
+ resolved "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b"
+ integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==
+ dependencies:
+ css-tree "1.0.0-alpha.29"
+
csso@^4.2.0:
version "4.2.0"
resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
@@ -5925,6 +6317,23 @@ expect@^27.2.3:
jest-message-util "^27.2.3"
jest-regex-util "^27.0.6"
+expect@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/expect/-/expect-27.3.1.tgz#d0f170b1f5c8a2009bab0beffd4bb94f043e38e7"
+ integrity sha512-MrNXV2sL9iDRebWPGOGFdPQRl2eDQNu/uhxIMShjjx74T6kC6jFIkmQ6OqXDtevjGUkyB2IT56RzDBqXf/QPCg==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ ansi-styles "^5.0.0"
+ jest-get-type "^27.3.1"
+ jest-matcher-utils "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-regex-util "^27.0.6"
+
+expr-parser@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/expr-parser/-/expr-parser-1.0.0.tgz#b85be870efce3c764977578d4a505795233f9022"
+ integrity sha512-ncuWTCWH0M5KbaYikXxZ3FG3Q+FTYIEXeXAbxYscdZLFNnR5Le5gRU2r/a/JUZHnxwBDZcxWEWzCoPQlW9Engg==
+
ext@^1.1.2:
version "1.4.0"
resolved "https://registry.npm.taobao.org/ext/download/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244"
@@ -7749,6 +8158,15 @@ istanbul-reports@^3.0.2:
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
+j-component@^1.4.4:
+ version "1.4.4"
+ resolved "https://registry.npmjs.org/j-component/-/j-component-1.4.4.tgz#f9b46db2fe67b57b6637e70b007d9d9504a89553"
+ integrity sha512-slXAVngICuOjd2DEVgFAWWD/rxxvXesKgCk+lkXuea/v2yOm+2lUK+nk0Ruml6l5EoI6D36nKC+Z7cav4poOiw==
+ dependencies:
+ expr-parser "^1.0.0"
+ miniprogram-api-typings "^3.2.2"
+ miniprogram-exparser "2.15.0"
+
jake@^10.6.1:
version "10.8.2"
resolved "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b"
@@ -7776,6 +8194,15 @@ jest-changed-files@^27.2.3:
execa "^5.0.0"
throat "^6.0.1"
+jest-changed-files@^27.3.0:
+ version "27.3.0"
+ resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.3.0.tgz#22a02cc2b34583fc66e443171dc271c0529d263c"
+ integrity sha512-9DJs9garMHv4RhylUMZgbdCJ3+jHSkpL9aaVKp13xtXAD80qLTLrqcDZL1PHA9dYA0bCI86Nv2BhkLpLhrBcPg==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ execa "^5.0.0"
+ throat "^6.0.1"
+
jest-circus@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-circus/download/jest-circus-27.2.3.tgz?cache=0&sync_timestamp=1632823921732&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-circus%2Fdownload%2Fjest-circus-27.2.3.tgz#e46ed567b316323f0b7c12dc72cd12fe46656356"
@@ -7801,6 +8228,31 @@ jest-circus@^27.2.3:
stack-utils "^2.0.3"
throat "^6.0.1"
+jest-circus@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-27.3.1.tgz#1679e74387cbbf0c6a8b42de963250a6469e0797"
+ integrity sha512-v1dsM9II6gvXokgqq6Yh2jHCpfg7ZqV4jWY66u7npz24JnhP3NHxI0sKT7+ZMQ7IrOWHYAaeEllOySbDbWsiXw==
+ dependencies:
+ "@jest/environment" "^27.3.1"
+ "@jest/test-result" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ co "^4.6.0"
+ dedent "^0.7.0"
+ expect "^27.3.1"
+ is-generator-fn "^2.0.0"
+ jest-each "^27.3.1"
+ jest-matcher-utils "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-runtime "^27.3.1"
+ jest-snapshot "^27.3.1"
+ jest-util "^27.3.1"
+ pretty-format "^27.3.1"
+ slash "^3.0.0"
+ stack-utils "^2.0.3"
+ throat "^6.0.1"
+
jest-cli@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-cli/download/jest-cli-27.2.3.tgz?cache=0&sync_timestamp=1632823952855&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-cli%2Fdownload%2Fjest-cli-27.2.3.tgz#68add5b1626bd5502df6c7a4a4d574ebf797221a"
@@ -7819,6 +8271,24 @@ jest-cli@^27.2.3:
prompts "^2.0.1"
yargs "^16.0.3"
+jest-cli@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-27.3.1.tgz#b576f9d146ba6643ce0a162d782b40152b6b1d16"
+ integrity sha512-WHnCqpfK+6EvT62me6WVs8NhtbjAS4/6vZJnk7/2+oOr50cwAzG4Wxt6RXX0hu6m1169ZGMlhYYUNeKBXCph/Q==
+ dependencies:
+ "@jest/core" "^27.3.1"
+ "@jest/test-result" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ chalk "^4.0.0"
+ exit "^0.1.2"
+ graceful-fs "^4.2.4"
+ import-local "^3.0.2"
+ jest-config "^27.3.1"
+ jest-util "^27.3.1"
+ jest-validate "^27.3.1"
+ prompts "^2.0.1"
+ yargs "^16.2.0"
+
jest-config@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-config/download/jest-config-27.2.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-config%2Fdownload%2Fjest-config-27.2.3.tgz#64606cd1f194fb9527cbbc3e4ff23b324653b992"
@@ -7846,6 +8316,33 @@ jest-config@^27.2.3:
micromatch "^4.0.4"
pretty-format "^27.2.3"
+jest-config@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-config/-/jest-config-27.3.1.tgz#cb3b7f6aaa8c0a7daad4f2b9573899ca7e09bbad"
+ integrity sha512-KY8xOIbIACZ/vdYCKSopL44I0xboxC751IX+DXL2+Wx6DKNycyEfV3rryC3BPm5Uq/BBqDoMrKuqLEUNJmMKKg==
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/test-sequencer" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ babel-jest "^27.3.1"
+ chalk "^4.0.0"
+ ci-info "^3.2.0"
+ deepmerge "^4.2.2"
+ glob "^7.1.1"
+ graceful-fs "^4.2.4"
+ jest-circus "^27.3.1"
+ jest-environment-jsdom "^27.3.1"
+ jest-environment-node "^27.3.1"
+ jest-get-type "^27.3.1"
+ jest-jasmine2 "^27.3.1"
+ jest-regex-util "^27.0.6"
+ jest-resolve "^27.3.1"
+ jest-runner "^27.3.1"
+ jest-util "^27.3.1"
+ jest-validate "^27.3.1"
+ micromatch "^4.0.4"
+ pretty-format "^27.3.1"
+
jest-diff@^27.0.0:
version "27.2.0"
resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-27.2.0.tgz#bda761c360f751bab1e7a2fe2fc2b0a35ce8518c"
@@ -7866,6 +8363,16 @@ jest-diff@^27.2.3:
jest-get-type "^27.0.6"
pretty-format "^27.2.3"
+jest-diff@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-27.3.1.tgz#d2775fea15411f5f5aeda2a5e02c2f36440f6d55"
+ integrity sha512-PCeuAH4AWUo2O5+ksW4pL9v5xJAcIKPUPfIhZBcG1RKv/0+dvaWTQK1Nrau8d67dp65fOqbeMdoil+6PedyEPQ==
+ dependencies:
+ chalk "^4.0.0"
+ diff-sequences "^27.0.6"
+ jest-get-type "^27.3.1"
+ pretty-format "^27.3.1"
+
jest-docblock@^27.0.6:
version "27.0.6"
resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3"
@@ -7884,6 +8391,17 @@ jest-each@^27.2.3:
jest-util "^27.2.3"
pretty-format "^27.2.3"
+jest-each@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-each/-/jest-each-27.3.1.tgz#14c56bb4f18dd18dc6bdd853919b5f16a17761ff"
+ integrity sha512-E4SwfzKJWYcvOYCjOxhZcxwL+AY0uFMvdCOwvzgutJiaiodFjkxQQDxHm8FQBeTqDnSmKsQWn7ldMRzTn2zJaQ==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ chalk "^4.0.0"
+ jest-get-type "^27.3.1"
+ jest-util "^27.3.1"
+ pretty-format "^27.3.1"
+
jest-environment-jsdom@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-environment-jsdom/download/jest-environment-jsdom-27.2.3.tgz?cache=0&sync_timestamp=1632823922110&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-27.2.3.tgz#36ad673f93f1948dd5daa6dcb1c9b1ad09d60165"
@@ -7897,6 +8415,19 @@ jest-environment-jsdom@^27.2.3:
jest-util "^27.2.3"
jsdom "^16.6.0"
+jest-environment-jsdom@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.3.1.tgz#63ac36d68f7a9303494df783494856222b57f73e"
+ integrity sha512-3MOy8qMzIkQlfb3W1TfrD7uZHj+xx8Olix5vMENkj5djPmRqndMaXtpnaZkxmxM+Qc3lo+yVzJjzuXbCcZjAlg==
+ dependencies:
+ "@jest/environment" "^27.3.1"
+ "@jest/fake-timers" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ jest-mock "^27.3.0"
+ jest-util "^27.3.1"
+ jsdom "^16.6.0"
+
jest-environment-node@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-environment-node/download/jest-environment-node-27.2.3.tgz?cache=0&sync_timestamp=1632823926705&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-27.2.3.tgz#651b15f52310b12660a5fd53812b8b2e696ee9b9"
@@ -7909,11 +8440,28 @@ jest-environment-node@^27.2.3:
jest-mock "^27.2.3"
jest-util "^27.2.3"
+jest-environment-node@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.3.1.tgz#af7d0eed04edafb740311b303f3fe7c8c27014bb"
+ integrity sha512-T89F/FgkE8waqrTSA7/ydMkcc52uYPgZZ6q8OaZgyiZkJb5QNNCF6oPZjH9IfPFfcc9uBWh1574N0kY0pSvTXw==
+ dependencies:
+ "@jest/environment" "^27.3.1"
+ "@jest/fake-timers" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ jest-mock "^27.3.0"
+ jest-util "^27.3.1"
+
jest-get-type@^27.0.6:
version "27.0.6"
resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe"
integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==
+jest-get-type@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.3.1.tgz#a8a2b0a12b50169773099eee60a0e6dd11423eff"
+ integrity sha512-+Ilqi8hgHSAdhlQ3s12CAVNd8H96ZkQBfYoXmArzZnOfAtVAJEiPDBirjByEblvG/4LPJmkL+nBqPO3A1YJAEg==
+
jest-haste-map@^27.2.0:
version "27.2.0"
resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.2.0.tgz#703b3a473e3f2e27d75ab07864ffd7bbaad0d75e"
@@ -7954,6 +8502,26 @@ jest-haste-map@^27.2.3:
optionalDependencies:
fsevents "^2.3.2"
+jest-haste-map@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.3.1.tgz#7656fbd64bf48bda904e759fc9d93e2c807353ee"
+ integrity sha512-lYfNZIzwPccDJZIyk9Iz5iQMM/MH56NIIcGj7AFU1YyA4ewWFBl8z+YPJuSCRML/ee2cCt2y3W4K3VXPT6Nhzg==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ "@types/graceful-fs" "^4.1.2"
+ "@types/node" "*"
+ anymatch "^3.0.3"
+ fb-watchman "^2.0.0"
+ graceful-fs "^4.2.4"
+ jest-regex-util "^27.0.6"
+ jest-serializer "^27.0.6"
+ jest-util "^27.3.1"
+ jest-worker "^27.3.1"
+ micromatch "^4.0.4"
+ walker "^1.0.7"
+ optionalDependencies:
+ fsevents "^2.3.2"
+
jest-jasmine2@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-jasmine2/download/jest-jasmine2-27.2.3.tgz?cache=0&sync_timestamp=1632823926216&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-27.2.3.tgz#19fe549b7e86128cd7d0d1668ebf4377dd3981f9"
@@ -7978,6 +8546,30 @@ jest-jasmine2@^27.2.3:
pretty-format "^27.2.3"
throat "^6.0.1"
+jest-jasmine2@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.3.1.tgz#df6d3d07c7dafc344feb43a0072a6f09458d32b0"
+ integrity sha512-WK11ZUetDQaC09w4/j7o4FZDUIp+4iYWH/Lik34Pv7ukL+DuXFGdnmmi7dT58J2ZYKFB5r13GyE0z3NPeyJmsg==
+ dependencies:
+ "@babel/traverse" "^7.1.0"
+ "@jest/environment" "^27.3.1"
+ "@jest/source-map" "^27.0.6"
+ "@jest/test-result" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ co "^4.6.0"
+ expect "^27.3.1"
+ is-generator-fn "^2.0.0"
+ jest-each "^27.3.1"
+ jest-matcher-utils "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-runtime "^27.3.1"
+ jest-snapshot "^27.3.1"
+ jest-util "^27.3.1"
+ pretty-format "^27.3.1"
+ throat "^6.0.1"
+
jest-leak-detector@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-leak-detector/download/jest-leak-detector-27.2.3.tgz?cache=0&sync_timestamp=1632823924517&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-27.2.3.tgz#6c60a795fe9b07442c604140373571559d4d467d"
@@ -7986,6 +8578,14 @@ jest-leak-detector@^27.2.3:
jest-get-type "^27.0.6"
pretty-format "^27.2.3"
+jest-leak-detector@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.3.1.tgz#7fb632c2992ef707a1e73286e1e704f9cc1772b2"
+ integrity sha512-78QstU9tXbaHzwlRlKmTpjP9k4Pvre5l0r8Spo4SbFFVy/4Abg9I6ZjHwjg2QyKEAMg020XcjP+UgLZIY50yEg==
+ dependencies:
+ jest-get-type "^27.3.1"
+ pretty-format "^27.3.1"
+
jest-matcher-utils@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-matcher-utils/download/jest-matcher-utils-27.2.3.tgz?cache=0&sync_timestamp=1632823924150&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-27.2.3.tgz#db7f992f3921f5004f4de36aafa0c03f2565122a"
@@ -7996,6 +8596,16 @@ jest-matcher-utils@^27.2.3:
jest-get-type "^27.0.6"
pretty-format "^27.2.3"
+jest-matcher-utils@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.3.1.tgz#257ad61e54a6d4044e080d85dbdc4a08811e9c1c"
+ integrity sha512-hX8N7zXS4k+8bC1Aj0OWpGb7D3gIXxYvPNK1inP5xvE4ztbz3rc4AkI6jGVaerepBnfWB17FL5lWFJT3s7qo8w==
+ dependencies:
+ chalk "^4.0.0"
+ jest-diff "^27.3.1"
+ jest-get-type "^27.3.1"
+ pretty-format "^27.3.1"
+
jest-message-util@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-message-util/download/jest-message-util-27.2.3.tgz#cd1091a3f0f3ff919756b15cfccc0ba43eeeeff0"
@@ -8011,6 +8621,21 @@ jest-message-util@^27.2.3:
slash "^3.0.0"
stack-utils "^2.0.3"
+jest-message-util@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.3.1.tgz#f7c25688ad3410ab10bcb862bcfe3152345c6436"
+ integrity sha512-bh3JEmxsTZ/9rTm0jQrPElbY2+y48Rw2t47uMfByNyUVR+OfPh4anuyKsGqsNkXk/TI4JbLRZx+7p7Hdt6q1yg==
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@jest/types" "^27.2.5"
+ "@types/stack-utils" "^2.0.0"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ micromatch "^4.0.4"
+ pretty-format "^27.3.1"
+ slash "^3.0.0"
+ stack-utils "^2.0.3"
+
jest-mock@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-mock/download/jest-mock-27.2.3.tgz?cache=0&sync_timestamp=1632823895450&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-mock%2Fdownload%2Fjest-mock-27.2.3.tgz#f532d2c8c158e8b899f2a0a5bd3077af37619c29"
@@ -8019,6 +8644,14 @@ jest-mock@^27.2.3:
"@jest/types" "^27.2.3"
"@types/node" "*"
+jest-mock@^27.3.0:
+ version "27.3.0"
+ resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-27.3.0.tgz#ddf0ec3cc3e68c8ccd489bef4d1f525571a1b867"
+ integrity sha512-ziZiLk0elZOQjD08bLkegBzv5hCABu/c8Ytx45nJKkysQwGaonvmTxwjLqEA4qGdasq9o2I8/HtdGMNnVsMTGw==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+
jest-pnp-resolver@^1.2.2:
version "1.2.2"
resolved "https://registry.npm.taobao.org/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
@@ -8038,6 +8671,15 @@ jest-resolve-dependencies@^27.2.3:
jest-regex-util "^27.0.6"
jest-snapshot "^27.2.3"
+jest-resolve-dependencies@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.3.1.tgz#85b99bdbdfa46e2c81c6228fc4c91076f624f6e2"
+ integrity sha512-X7iLzY8pCiYOnvYo2YrK3P9oSE8/3N2f4pUZMJ8IUcZnT81vlSonya1KTO9ZfKGuC+svE6FHK/XOb8SsoRUV1A==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ jest-regex-util "^27.0.6"
+ jest-snapshot "^27.3.1"
+
jest-resolve@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-resolve/download/jest-resolve-27.2.3.tgz?cache=0&sync_timestamp=1632823923669&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-27.2.3.tgz#868911cf705c537f433befcfc65e6ddc70c9d7f9"
@@ -8054,6 +8696,22 @@ jest-resolve@^27.2.3:
resolve "^1.20.0"
slash "^3.0.0"
+jest-resolve@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.3.1.tgz#0e5542172a1aa0270be6f66a65888647bdd74a3e"
+ integrity sha512-Dfzt25CFSPo3Y3GCbxynRBZzxq9AdyNN+x/v2IqYx6KVT5Z6me2Z/PsSGFSv3cOSUZqJ9pHxilao/I/m9FouLw==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^27.3.1"
+ jest-pnp-resolver "^1.2.2"
+ jest-util "^27.3.1"
+ jest-validate "^27.3.1"
+ resolve "^1.20.0"
+ resolve.exports "^1.1.0"
+ slash "^3.0.0"
+
jest-runner@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-runner/download/jest-runner-27.2.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-runner%2Fdownload%2Fjest-runner-27.2.3.tgz#22f6ef7bd4140fec74cec18eef29c24d07cb6ad5"
@@ -8082,6 +8740,34 @@ jest-runner@^27.2.3:
source-map-support "^0.5.6"
throat "^6.0.1"
+jest-runner@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-27.3.1.tgz#1d594dcbf3bd8600a7e839e790384559eaf96e3e"
+ integrity sha512-r4W6kBn6sPr3TBwQNmqE94mPlYVn7fLBseeJfo4E2uCTmAyDFm2O5DYAQAFP7Q3YfiA/bMwg8TVsciP7k0xOww==
+ dependencies:
+ "@jest/console" "^27.3.1"
+ "@jest/environment" "^27.3.1"
+ "@jest/test-result" "^27.3.1"
+ "@jest/transform" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ emittery "^0.8.1"
+ exit "^0.1.2"
+ graceful-fs "^4.2.4"
+ jest-docblock "^27.0.6"
+ jest-environment-jsdom "^27.3.1"
+ jest-environment-node "^27.3.1"
+ jest-haste-map "^27.3.1"
+ jest-leak-detector "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-resolve "^27.3.1"
+ jest-runtime "^27.3.1"
+ jest-util "^27.3.1"
+ jest-worker "^27.3.1"
+ source-map-support "^0.5.6"
+ throat "^6.0.1"
+
jest-runtime@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-runtime/download/jest-runtime-27.2.3.tgz?cache=0&sync_timestamp=1632823918419&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-27.2.3.tgz#e6fc25bbbc63b19fae50c3994060efb1b2922b7e"
@@ -8115,6 +8801,38 @@ jest-runtime@^27.2.3:
strip-bom "^4.0.0"
yargs "^16.0.3"
+jest-runtime@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.3.1.tgz#80fa32eb85fe5af575865ddf379874777ee993d7"
+ integrity sha512-qtO6VxPbS8umqhEDpjA4pqTkKQ1Hy4ZSi9mDVeE9Za7LKBo2LdW2jmT+Iod3XFaJqINikZQsn2wEi0j9wPRbLg==
+ dependencies:
+ "@jest/console" "^27.3.1"
+ "@jest/environment" "^27.3.1"
+ "@jest/globals" "^27.3.1"
+ "@jest/source-map" "^27.0.6"
+ "@jest/test-result" "^27.3.1"
+ "@jest/transform" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/yargs" "^16.0.0"
+ chalk "^4.0.0"
+ cjs-module-lexer "^1.0.0"
+ collect-v8-coverage "^1.0.0"
+ execa "^5.0.0"
+ exit "^0.1.2"
+ glob "^7.1.3"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-mock "^27.3.0"
+ jest-regex-util "^27.0.6"
+ jest-resolve "^27.3.1"
+ jest-snapshot "^27.3.1"
+ jest-util "^27.3.1"
+ jest-validate "^27.3.1"
+ slash "^3.0.0"
+ strip-bom "^4.0.0"
+ yargs "^16.2.0"
+
jest-serializer-html@^7.1.0:
version "7.1.0"
resolved "https://registry.npmjs.org/jest-serializer-html/-/jest-serializer-html-7.1.0.tgz#0cfea8a03b9b82bc420fd2cb969bd76713a87c08"
@@ -8160,6 +8878,36 @@ jest-snapshot@^27.2.3:
pretty-format "^27.2.3"
semver "^7.3.2"
+jest-snapshot@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.3.1.tgz#1da5c0712a252d70917d46c037054f5918c49ee4"
+ integrity sha512-APZyBvSgQgOT0XumwfFu7X3G5elj6TGhCBLbBdn3R1IzYustPGPE38F51dBWMQ8hRXa9je0vAdeVDtqHLvB6lg==
+ dependencies:
+ "@babel/core" "^7.7.2"
+ "@babel/generator" "^7.7.2"
+ "@babel/parser" "^7.7.2"
+ "@babel/plugin-syntax-typescript" "^7.7.2"
+ "@babel/traverse" "^7.7.2"
+ "@babel/types" "^7.0.0"
+ "@jest/transform" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/babel__traverse" "^7.0.4"
+ "@types/prettier" "^2.1.5"
+ babel-preset-current-node-syntax "^1.0.0"
+ chalk "^4.0.0"
+ expect "^27.3.1"
+ graceful-fs "^4.2.4"
+ jest-diff "^27.3.1"
+ jest-get-type "^27.3.1"
+ jest-haste-map "^27.3.1"
+ jest-matcher-utils "^27.3.1"
+ jest-message-util "^27.3.1"
+ jest-resolve "^27.3.1"
+ jest-util "^27.3.1"
+ natural-compare "^1.4.0"
+ pretty-format "^27.3.1"
+ semver "^7.3.2"
+
jest-util@^27.0.0, jest-util@^27.2.0:
version "27.2.0"
resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.2.0.tgz#bfccb85cfafae752257319e825a5b8d4ada470dc"
@@ -8184,6 +8932,18 @@ jest-util@^27.2.3:
is-ci "^3.0.0"
picomatch "^2.2.3"
+jest-util@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.3.1.tgz#a58cdc7b6c8a560caac9ed6bdfc4e4ff23f80429"
+ integrity sha512-8fg+ifEH3GDryLQf/eKZck1DEs2YuVPBCMOaHQxVVLmQwl/CDhWzrvChTX4efLZxGrw+AA0mSXv78cyytBt/uw==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ ci-info "^3.2.0"
+ graceful-fs "^4.2.4"
+ picomatch "^2.2.3"
+
jest-validate@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-validate/download/jest-validate-27.2.3.tgz#4fcc49e581f13fbe260a77e711a80f0256138a7a"
@@ -8196,6 +8956,18 @@ jest-validate@^27.2.3:
leven "^3.1.0"
pretty-format "^27.2.3"
+jest-validate@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-27.3.1.tgz#3a395d61a19cd13ae9054af8cdaf299116ef8a24"
+ integrity sha512-3H0XCHDFLA9uDII67Bwi1Vy7AqwA5HqEEjyy934lgVhtJ3eisw6ShOF1MDmRPspyikef5MyExvIm0/TuLzZ86Q==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ camelcase "^6.2.0"
+ chalk "^4.0.0"
+ jest-get-type "^27.3.1"
+ leven "^3.1.0"
+ pretty-format "^27.3.1"
+
jest-watcher@^27.2.3:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest-watcher/download/jest-watcher-27.2.3.tgz#2989228bdd05138094f7ec19a23cbb2665f2efb7"
@@ -8209,6 +8981,19 @@ jest-watcher@^27.2.3:
jest-util "^27.2.3"
string-length "^4.0.1"
+jest-watcher@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.3.1.tgz#ba5e0bc6aa843612b54ddb7f009d1cbff7e05f3e"
+ integrity sha512-9/xbV6chABsGHWh9yPaAGYVVKurWoP3ZMCv6h+O1v9/+pkOroigs6WzZ0e9gLP/njokUwM7yQhr01LKJVMkaZA==
+ dependencies:
+ "@jest/test-result" "^27.3.1"
+ "@jest/types" "^27.2.5"
+ "@types/node" "*"
+ ansi-escapes "^4.2.1"
+ chalk "^4.0.0"
+ jest-util "^27.3.1"
+ string-length "^4.0.1"
+
jest-worker@^27.2.0:
version "27.2.0"
resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.0.tgz#11eef39f1c88f41384ca235c2f48fe50bc229bc0"
@@ -8227,6 +9012,15 @@ jest-worker@^27.2.3:
merge-stream "^2.0.0"
supports-color "^8.0.0"
+jest-worker@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz#0def7feae5b8042be38479799aeb7b5facac24b2"
+ integrity sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==
+ dependencies:
+ "@types/node" "*"
+ merge-stream "^2.0.0"
+ supports-color "^8.0.0"
+
jest@^27.2.1:
version "27.2.3"
resolved "https://registry.npmmirror.com/jest/download/jest-27.2.3.tgz#9c2af9ce874a3eb202f83d92fbc1cc61ccc73248"
@@ -8236,6 +9030,15 @@ jest@^27.2.1:
import-local "^3.0.2"
jest-cli "^27.2.3"
+jest@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/jest/-/jest-27.3.1.tgz#b5bab64e8f56b6f7e275ba1836898b0d9f1e5c8a"
+ integrity sha512-U2AX0AgQGd5EzMsiZpYt8HyZ+nSVIh5ujQ9CPp9EQZJMjXIiSZpJNweZl0swatKRoqHWgGKM3zaSwm4Zaz87ng==
+ dependencies:
+ "@jest/core" "^27.3.1"
+ import-local "^3.0.2"
+ jest-cli "^27.3.1"
+
jimp@^0.9.3:
version "0.9.8"
resolved "https://registry.npm.taobao.org/jimp/download/jimp-0.9.8.tgz#2ee87b81b42e723ad74c73b8012f879c0abe5b04"
@@ -8521,6 +9324,22 @@ lead@^1.0.0:
dependencies:
flush-write-stream "^1.0.2"
+less@^3.10.3:
+ version "3.13.1"
+ resolved "https://registry.npmjs.org/less/-/less-3.13.1.tgz#0ebc91d2a0e9c0c6735b83d496b0ab0583077909"
+ integrity sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==
+ dependencies:
+ copy-anything "^2.0.1"
+ tslib "^1.10.0"
+ optionalDependencies:
+ errno "^0.1.1"
+ graceful-fs "^4.1.2"
+ image-size "~0.5.0"
+ make-dir "^2.1.0"
+ mime "^1.4.1"
+ native-request "^1.0.5"
+ source-map "~0.6.0"
+
"less@^3.7.1 || ^4.0.0", less@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/less/-/less-4.1.1.tgz#15bf253a9939791dc690888c3ff424f3e6c7edba"
@@ -8703,7 +9522,7 @@ lodash.ismatch@^4.4.0:
resolved "https://registry.npm.taobao.org/lodash.ismatch/download/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=
-lodash.memoize@^4.1.2:
+lodash.memoize@4.x, lodash.memoize@^4.1.2:
version "4.1.2"
resolved "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
@@ -8927,6 +9746,11 @@ mdn-data@2.0.14:
resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
+mdn-data@~1.1.0:
+ version "1.1.4"
+ resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01"
+ integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==
+
mdurl@^1.0.1:
version "1.0.1"
resolved "https://registry.npm.taobao.org/mdurl/download/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
@@ -9111,6 +9935,11 @@ miniprogram-api-typings@^3.1.6:
resolved "https://registry.yarnpkg.com/miniprogram-api-typings/-/miniprogram-api-typings-3.4.3.tgz#c88cc624973322d990353d94ae765db90938d132"
integrity sha512-wdBZG2IImFjkTFv66r225455J+//gn4c7Ja99aC3mVV0AqTRl45FwAFA7ur9KZd2j+ORGtyK1ldBT49rXpVE2w==
+miniprogram-api-typings@^3.2.2:
+ version "3.4.4"
+ resolved "https://registry.npmjs.org/miniprogram-api-typings/-/miniprogram-api-typings-3.4.4.tgz#a68ce1f10ff2479b521cd4af276a23041b90f2f6"
+ integrity sha512-vT4avEJxCnscNXjY3rI0dNtU1tf/mNll9RhAS0uS+eN5IdQ7MrnG5thGOxjoWnDJSiPYLG912IMcf6KKsXEDAQ==
+
miniprogram-ci@^1.6.1:
version "1.6.1"
resolved "https://registry.npmjs.org/miniprogram-ci/-/miniprogram-ci-1.6.1.tgz#8ba9a982faf73be455197d41d21c9a66d8ed6e2c"
@@ -9168,6 +9997,30 @@ miniprogram-ci@^1.6.1:
wxml-minifier "0.0.1"
yargs "^15.0.2"
+miniprogram-compiler@latest:
+ version "0.1.3"
+ resolved "https://registry.npmjs.org/miniprogram-compiler/-/miniprogram-compiler-0.1.3.tgz#e5e29786db3dc93e5749b67127f563292ca0690f"
+ integrity sha512-RvAtq5QKLRSD2VZ3+bgXHN+cO3uJBFSpICUDhmgsiJX4ZNpKYAuHjW2U78XLBWM6hwVXNwWFudF3x9V6lTkG7w==
+ dependencies:
+ glob "^7.1.3"
+ unescape-js "^1.1.1"
+
+miniprogram-exparser@2.15.0:
+ version "2.15.0"
+ resolved "https://registry.npmjs.org/miniprogram-exparser/-/miniprogram-exparser-2.15.0.tgz#8893a250dfed768802c061b13ff9ae1958b1223c"
+ integrity sha512-W6aS1R3oVTwYw5hPguRqICFqx3wk2dtPAcwT6269WeWRjuQslbVPZRW/nlN16bg0NM5eQFmfU49PM6/PQ5DE8w==
+
+miniprogram-simulate@^1.4.2:
+ version "1.4.2"
+ resolved "https://registry.npmjs.org/miniprogram-simulate/-/miniprogram-simulate-1.4.2.tgz#6a1c21432df830900979dc1e512bb55676f003a2"
+ integrity sha512-eJ21rTum/3mXPCPAsZvxrvXosidPdAEIv8WhutJC9eO5YT9fyxDDMxbSH3kvo0AujCDlQ+f+Z8uKWJeEZZYa9Q==
+ dependencies:
+ csso "^3.5.1"
+ j-component "^1.4.4"
+ less "^3.10.3"
+ miniprogram-compiler latest
+ postcss "^7.0.23"
+
mixin-deep@^1.2.0:
version "1.3.2"
resolved "https://registry.npm.taobao.org/mixin-deep/download/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
@@ -9264,6 +10117,11 @@ nanomatch@^1.2.9:
snapdragon "^0.8.1"
to-regex "^3.0.1"
+native-request@^1.0.5:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz#acdb30fe2eefa3e1bc8c54b3a6852e9c5c0d3cb0"
+ integrity sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==
+
natural-compare@^1.4.0:
version "1.4.0"
resolved "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -9937,6 +10795,11 @@ phin@^2.9.1:
resolved "https://registry.npm.taobao.org/phin/download/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c"
integrity sha1-+basEKA1Y2+2XfxXaqqhe4dDElw=
+picocolors@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f"
+ integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==
+
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3:
version "2.3.0"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
@@ -10328,6 +11191,14 @@ postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.
source-map "^0.6.1"
supports-color "^6.1.0"
+postcss@^7.0.23:
+ version "7.0.39"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309"
+ integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==
+ dependencies:
+ picocolors "^0.2.1"
+ source-map "^0.6.1"
+
postcss@^8.1.10, postcss@^8.3.6:
version "8.3.7"
resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.7.tgz#ec88563588c8da8e58e7226f7633b51ae221eeda"
@@ -10382,6 +11253,16 @@ pretty-format@^27.2.3:
ansi-styles "^5.0.0"
react-is "^17.0.1"
+pretty-format@^27.3.1:
+ version "27.3.1"
+ resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.3.1.tgz#7e9486365ccdd4a502061fa761d3ab9ca1b78df5"
+ integrity sha512-DR/c+pvFc52nLimLROYjnXPtolawm+uWDxr4FjuLDLUn+ktWnSN851KoHwHzzqq6rfCOjkzN8FLgDrSub6UDuA==
+ dependencies:
+ "@jest/types" "^27.2.5"
+ ansi-regex "^5.0.1"
+ ansi-styles "^5.0.0"
+ react-is "^17.0.1"
+
pretty-hrtime@^1.0.0:
version "1.0.3"
resolved "https://registry.npm.taobao.org/pretty-hrtime/download/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
@@ -11013,6 +11894,11 @@ resolve-url@^0.2.1:
resolved "https://registry.npm.taobao.org/resolve-url/download/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+resolve.exports@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9"
+ integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
+
resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.8.1:
version "1.20.0"
resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
@@ -11355,7 +12241,7 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, sourc
resolved "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
-source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
+source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
version "0.5.7"
resolved "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
@@ -11539,6 +12425,11 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.0"
+string.fromcodepoint@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.npmjs.org/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz#8d978333c0bc92538f50f383e4888f3e5619d653"
+ integrity sha1-jZeDM8C8klOPUPOD5IiPPlYZ1lM=
+
string.prototype.trimend@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
@@ -12077,6 +12968,20 @@ ts-jest@^27.0.5:
semver "7.x"
yargs-parser "20.x"
+ts-jest@^27.0.7:
+ version "27.0.7"
+ resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-27.0.7.tgz#fb7c8c8cb5526ab371bc1b23d06e745652cca2d0"
+ integrity sha512-O41shibMqzdafpuP+CkrOL7ykbmLh+FqQrXEmV9CydQ5JBk0Sj0uAEF5TNNe94fZWKm3yYvWa/IbyV4Yg1zK2Q==
+ dependencies:
+ bs-logger "0.x"
+ fast-json-stable-stringify "2.x"
+ jest-util "^27.0.0"
+ json5 "2.x"
+ lodash.memoize "4.x"
+ make-error "1.x"
+ semver "7.x"
+ yargs-parser "20.x"
+
tsconfig-paths@^3.10.1:
version "3.10.1"
resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7"
@@ -12214,6 +13119,11 @@ typescript@^4.4.3:
resolved "https://registry.npmmirror.com/typescript/download/typescript-4.4.3.tgz?cache=0&sync_timestamp=1632813532420&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftypescript%2Fdownload%2Ftypescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324"
integrity sha1-vcVAfKorEJ79T4L+EwZW+XeikyQ=
+typescript@^4.4.4:
+ version "4.4.4"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz#2cd01a1a1f160704d3101fd5a58ff0f9fcb8030c"
+ integrity sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==
+
uc.micro@^1.0.1, uc.micro@^1.0.5:
version "1.0.6"
resolved "https://registry.npm.taobao.org/uc.micro/download/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac"
@@ -12268,6 +13178,13 @@ undertaker@^1.2.1:
object.reduce "^1.0.0"
undertaker-registry "^1.0.0"
+unescape-js@^1.1.1:
+ version "1.1.4"
+ resolved "https://registry.npmjs.org/unescape-js/-/unescape-js-1.1.4.tgz#4bc6389c499cb055a98364a0b3094e1c3d5da395"
+ integrity sha512-42SD8NOQEhdYntEiUQdYq/1V/YHwr1HLwlHuTJB5InVVdOSbgI6xu8jK5q65yIzuFCfczzyDF/7hbGzVbyCw0g==
+ dependencies:
+ string.fromcodepoint "^0.2.1"
+
unicode-canonical-property-names-ecmascript@^1.0.4:
version "1.0.4"
resolved "https://registry.npm.taobao.org/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
@@ -12932,7 +13849,7 @@ yargs@^15.0.2:
y18n "^4.0.0"
yargs-parser "^18.1.2"
-yargs@^16.0.3, yargs@^16.1.0:
+yargs@^16.0.3, yargs@^16.1.0, yargs@^16.2.0:
version "16.2.0"
resolved "https://registry.npm.taobao.org/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1617506342166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
integrity sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=