diff --git a/package.json b/package.json index 782e8d4ec..06de1106f 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,8 @@ "url": "https://github.com/AntmJS/vantui/issues/new" }, "engines": { - "node": ">=12", - "npm": ">=6.4", + "node": ">=16", + "npm": ">=8", "yarn": ">=1.22" }, "browserslist": [ @@ -85,9 +85,9 @@ } }, "scripts": { - "eslint": "npx lerna run eslint", - "stylelint": "npx lerna run stylelint", - "prettier": "npx lerna run prettier", + "eslint": "npx eslint -c eslint.config.js '**/*.{js,jsx,ts,tsx}' && npx tsc -p tsconfig.json --skipLibCheck", + "stylelint": "npx stylelint --aei --config stylelint.config.js '**/*.{css,less}'", + "prettier": "npx prettier --write '**/*.{js,jsx,ts,tsx,md,html,css,less}'", "clear-all": "rimraf packages/*/node_modules", "bootstrap:ci": "npx lerna bootstrap --npm-client=yarn", "bootstrap:lerna": "npx lerna bootstrap", @@ -104,8 +104,8 @@ "packages/*" ], "dependencies": { - "@antmjs/eslint": "^1.20.4", - "@antmjs/stylelint": "^1.20.4", + "@antmjs/eslint": "^1.21.0", + "@antmjs/stylelint": "^1.21.0", "@commitlint/cli": "^12.1.4", "@commitlint/config-conventional": "^12.1.4", "all-contributors-cli": "^6.20.0", diff --git a/packages/vantui-cli/.npmignore b/packages/vantui-cli/.npmignore index 945880995..08878ab9f 100644 --- a/packages/vantui-cli/.npmignore +++ b/packages/vantui-cli/.npmignore @@ -9,7 +9,7 @@ .DS_Store CHANGELOG.md -package-lock.json node_modules coverage +src diff --git a/packages/vantui-cli/.prettierignore b/packages/vantui-cli/.prettierignore deleted file mode 100644 index 5d6738e9d..000000000 --- a/packages/vantui-cli/.prettierignore +++ /dev/null @@ -1,36 +0,0 @@ -*.log -*.md -*.lock -*.swp - -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger -node_modules -src/iconfont.less -.cache -lib -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui-cli/.prettierrc b/packages/vantui-cli/.prettierrc deleted file mode 100644 index 5a6fd0158..000000000 --- a/packages/vantui-cli/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all", - "semi": false -} \ No newline at end of file diff --git a/packages/vantui-cli/bin.js b/packages/vantui-cli/bin.js index e2a5871a3..1fbff0d09 100755 --- a/packages/vantui-cli/bin.js +++ b/packages/vantui-cli/bin.js @@ -1,3 +1,3 @@ #!/usr/bin/env node /* eslint-disable import/no-unresolved */ -import './lib/cli.js' +import './dist/cli.js' diff --git a/packages/vantui-cli/package.json b/packages/vantui-cli/package.json index 41012d382..b49d16eda 100644 --- a/packages/vantui-cli/package.json +++ b/packages/vantui-cli/package.json @@ -28,10 +28,7 @@ "antmjs" ], "scripts": { - "eslint": "", - "stylelint": "", - "prettier": "npx prettier --write '**/*.{js,jsx,ts,tsx,md,html,css,less}'", - "dev": "tsc --watch", + "watch": "tsc --watch", "build": "tsc", "test:watch": "", "test": "" @@ -47,7 +44,7 @@ "@types/prettier": "^2.6.1" }, "dependencies": { - "@antmjs/babel-preset": "1.20.4", + "@antmjs/babel-preset": "1.21.0", "@babel/core": "^7.16.0", "@babel/plugin-transform-runtime": "^7.17.10", "@babel/plugin-transform-typescript": "^7.16.8", @@ -85,12 +82,10 @@ "postcss": "^8.3.11", "postcss-load-config": "^3.1.0", "postcss-loader": "^6.2.1", - "prettier": "^2.7.1", "raw-loader": "^4.0.2", "react-hot-toast": "^2.2.0", "react-router-dom": "^5.3.0", "release-it": "^14.11.6", - "transliteration": "^2.2.0", - "typescript": "^4.7.4" + "transliteration": "^2.2.0" } } diff --git a/packages/vantui-cli/tsconfig.json b/packages/vantui-cli/tsconfig.json index 12b633d62..4d46eb445 100644 --- a/packages/vantui-cli/tsconfig.json +++ b/packages/vantui-cli/tsconfig.json @@ -19,7 +19,7 @@ "module": "esnext", // default: module === AMD or UMD or System or ES6, then Classic otherwise Node "moduleResolution": "Node", - "outDir": "./lib", + "outDir": "./dist", "lib": ["ESNext", "dom"], /** Interop Constraints */ "esModuleInterop": true, diff --git a/packages/vantui-demo/.eslintignore b/packages/vantui-demo/.eslintignore deleted file mode 100644 index 865117e60..000000000 --- a/packages/vantui-demo/.eslintignore +++ /dev/null @@ -1,40 +0,0 @@ -*.log -*.json -*.css -*.less -*.scss -*.html -*.md -*.lock -*.swp - -.github -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger/* -!src/actions/swagger/utils -node_modules -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui-demo/.prettierignore b/packages/vantui-demo/.prettierignore deleted file mode 100644 index c2b525ac3..000000000 --- a/packages/vantui-demo/.prettierignore +++ /dev/null @@ -1,34 +0,0 @@ -*.log -*.md -*.lock -*.swp - -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger -node_modules -src/iconfont.less -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui-demo/.prettierrc b/packages/vantui-demo/.prettierrc deleted file mode 100644 index 5a6fd0158..000000000 --- a/packages/vantui-demo/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all", - "semi": false -} \ No newline at end of file diff --git a/packages/vantui-demo/.stylelintignore b/packages/vantui-demo/.stylelintignore deleted file mode 100644 index a4b834afc..000000000 --- a/packages/vantui-demo/.stylelintignore +++ /dev/null @@ -1,41 +0,0 @@ -*.log -*.json -*.js -*.jsx -*.ts -*.tsx -*.md -*.lock -*.swp - -.github -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger/* -!src/actions/swagger/utils -node_modules -src/iconfont.less -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui-demo/eslint.config.js b/packages/vantui-demo/eslint.config.js deleted file mode 100644 index 815e3fed8..000000000 --- a/packages/vantui-demo/eslint.config.js +++ /dev/null @@ -1,26 +0,0 @@ -module.exports = { - extends: '../../node_modules/@antmjs/eslint/index.js', - parserOptions: { - project: 'tsconfig.json', - sourceType: 'module', - ecmaVersion: '2021', - }, - settings: { - 'import/resolver': { - typescript: { - project: 'tsconfig.json', - }, - }, - react: { - createClass: 'createReactClass', // Regex for Component Factory to use, - // default to "createReactClass" - pragma: 'React', // Pragma to use, default to "React" - fragment: 'Fragment', // Fragment to use (may be a property of ), default to "Fragment" - version: 'detect', // React version. "detect" automatically picks the version you have installed. - // You can also use `16.0`, `16.3`, etc, if you want to override the detected value. - // default to latest and warns if missing - // It will default to "detect" in the future - // flowVersion: '0.53', // Flow version - }, - }, -} diff --git a/packages/vantui-demo/package.json b/packages/vantui-demo/package.json index 99867a2b0..3eb6dcb2f 100644 --- a/packages/vantui-demo/package.json +++ b/packages/vantui-demo/package.json @@ -50,9 +50,6 @@ "UCAndroid >= 4.1" ], "scripts": { - "eslint": "npx eslint -c eslint.config.js '**/*.{js,jsx,ts,tsx}' && npx tsc -p tsconfig.json --skipLibCheck", - "stylelint": "npx stylelint --aei --config stylelint.config.js '**/*.{css,less}'", - "prettier": "npx prettier --write '**/*.{js,jsx,ts,tsx,md,html,css,less}'", "iconfont": "npx antm-icon --input-path https://at.alicdn.com/t/xxxx.css --output-path src/iconfont.less", "watch:kwai": "cross-env NODE_ENV=development API_ENV=dev WATCHING=true npx taro build --type kwai --watch", "watch:swan": "cross-env NODE_ENV=development API_ENV=dev WATCHING=true npx taro build --type swan --watch", @@ -84,11 +81,8 @@ "test": "" }, "author": "", - "peerDependencies": { - "@antmjs/vantui": "^1.9.18" - }, "dependencies": { - "@antmjs/mini-fix": "^1.20.4", + "@antmjs/mini-fix": "^1.21.0", "@antmjs/vantui": "1.9.20", "@babel/runtime": "^7.7.7", "@tarojs/components": "3.5.3", @@ -115,11 +109,9 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@antmjs/eslint": "^1.20.4", - "@antmjs/iconfont": "^1.20.4", - "@antmjs/plugin-global-fix": "^1.20.4", - "@antmjs/plugin-mini-fix": "^1.20.4", - "@antmjs/stylelint": "^1.20.4", + "@antmjs/iconfont": "^1.21.0", + "@antmjs/plugin-global-fix": "^1.21.0", + "@antmjs/plugin-mini-fix": "^1.21.0", "@babel/core": "^7.8.0", "@commitlint/cli": "^12.1.4", "@commitlint/config-conventional": "^12.1.4", @@ -134,11 +126,7 @@ "babel-plugin-lodash": "^3.3.4", "babel-preset-taro": "3.5.3", "cross-env": "^7.0.3", - "eslint": "^8.21.0", - "prettier": "^2.7.1", "react-refresh": "0.11.0", - "stylelint": "^13.13.1", - "typescript": "^4.7.4", "webpack": "5.69.0" } } diff --git a/packages/vantui-demo/stylelint.config.js b/packages/vantui-demo/stylelint.config.js deleted file mode 100644 index 8fb15d738..000000000 --- a/packages/vantui-demo/stylelint.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - extends: ['@antmjs/stylelint'], -} diff --git a/packages/vantui-doc/.prettierignore b/packages/vantui-doc/.prettierignore deleted file mode 100644 index ba0098a2f..000000000 --- a/packages/vantui-doc/.prettierignore +++ /dev/null @@ -1,35 +0,0 @@ -*.log -*.md -*.lock -*.swp - -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger -node_modules -src/iconfont.less -site -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui-doc/.prettierrc b/packages/vantui-doc/.prettierrc deleted file mode 100644 index 5a6fd0158..000000000 --- a/packages/vantui-doc/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all", - "semi": false -} \ No newline at end of file diff --git a/packages/vantui-doc/package.json b/packages/vantui-doc/package.json index 72c3d3248..5783b9afb 100644 --- a/packages/vantui-doc/package.json +++ b/packages/vantui-doc/package.json @@ -4,16 +4,13 @@ "version": "1.9.20", "description": "", "scripts": { - "eslint": "", - "stylelint": "", - "prettier": "npx prettier --write '**/*.{js,jsx,ts,tsx,md,html,css,less}'", - "test:watch": "", - "test": "", "dev": "node ./scripts/ts-to-md && npx antm-vantui-cli docs --mode development", "mdcode-create": "npx antm-vantui-cli mdcode --mode create", "mdcode-watch": "npx antm-vantui-cli mdcode --mode watch", - "test:coverage": "open test/coverage/index.html", "build": "node ./scripts/ts-to-md && sh ./build.sh", + "test:coverage": "open test/coverage/index.html", + "test:watch": "", + "test": "", "release": "npx gh-pages -d site", "docs-ts": "node ./scripts/ts-to-md" }, @@ -23,12 +20,7 @@ "Chrome >= 51", "iOS >= 10" ], - "peerDependencies": { - "@antmjs/vantui-cli": "^1.9.18" - }, "devDependencies": { - "@antmjs/eslint": "^1.20.4", - "@antmjs/stylelint": "^1.20.4", "@antmjs/vantui-cli": "1.9.20", "@vue/compiler-sfc": "^3.0.0", "ast-to-markdown": "^1.0.0", @@ -41,7 +33,6 @@ "markdown-to-ast": "^6.0.3", "ora": "5.4.1", "postcss-loader": "^7.0.1", - "prettier": "^2.7.1", "raw-loader": "^4.0.2" } } diff --git a/packages/vantui/.eslintignore b/packages/vantui/.eslintignore deleted file mode 100644 index cdff83ade..000000000 --- a/packages/vantui/.eslintignore +++ /dev/null @@ -1,42 +0,0 @@ -*.log -*.json -*.css -*.less -*.scss -*.html -*.md -*.lock -*.swp - -.github -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger/* -!src/actions/swagger/utils -lib -es -node_modules -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui/.npmignore b/packages/vantui/.npmignore index d2063ad99..1250f3e91 100644 --- a/packages/vantui/.npmignore +++ b/packages/vantui/.npmignore @@ -9,7 +9,6 @@ .DS_Store CHANGELOG.md -package-lock.json src node_modules diff --git a/packages/vantui/.prettierignore b/packages/vantui/.prettierignore deleted file mode 100644 index 921407b67..000000000 --- a/packages/vantui/.prettierignore +++ /dev/null @@ -1,36 +0,0 @@ -*.log -*.md -*.lock -*.swp - -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger -node_modules -src/iconfont.less -es -lib -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui/.prettierrc b/packages/vantui/.prettierrc deleted file mode 100644 index 5a6fd0158..000000000 --- a/packages/vantui/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all", - "semi": false -} \ No newline at end of file diff --git a/packages/vantui/.stylelintignore b/packages/vantui/.stylelintignore deleted file mode 100644 index 92b39cc04..000000000 --- a/packages/vantui/.stylelintignore +++ /dev/null @@ -1,43 +0,0 @@ -*.log -*.json -*.js -*.jsx -*.ts -*.tsx -*.md -*.lock -*.swp - -.github -.cache -.temp -.idea -.rn_temp -.DS_Store -.editorconfig -.eslintignore -.gitignore -.prettierignore -.prettierrc -.stylelintignore -LICENSE - -src/actions/rapper/* -!src/actions/rapper/commonTypes -!src/actions/rapper/types -src/actions/swagger/* -!src/actions/swagger/utils -node_modules -src/iconfont.less -lib -es -coverage -dist -build -weapp -alipay -kwai -swan -tt -qq -h5 diff --git a/packages/vantui/eslint.config.js b/packages/vantui/eslint.config.js deleted file mode 100644 index 815e3fed8..000000000 --- a/packages/vantui/eslint.config.js +++ /dev/null @@ -1,26 +0,0 @@ -module.exports = { - extends: '../../node_modules/@antmjs/eslint/index.js', - parserOptions: { - project: 'tsconfig.json', - sourceType: 'module', - ecmaVersion: '2021', - }, - settings: { - 'import/resolver': { - typescript: { - project: 'tsconfig.json', - }, - }, - react: { - createClass: 'createReactClass', // Regex for Component Factory to use, - // default to "createReactClass" - pragma: 'React', // Pragma to use, default to "React" - fragment: 'Fragment', // Fragment to use (may be a property of ), default to "Fragment" - version: 'detect', // React version. "detect" automatically picks the version you have installed. - // You can also use `16.0`, `16.3`, etc, if you want to override the detected value. - // default to latest and warns if missing - // It will default to "detect" in the future - // flowVersion: '0.53', // Flow version - }, - }, -} diff --git a/packages/vantui/package.json b/packages/vantui/package.json index cd517ca93..b3705459a 100644 --- a/packages/vantui/package.json +++ b/packages/vantui/package.json @@ -40,9 +40,6 @@ "UCAndroid >= 4.1" ], "scripts": { - "eslint": "npx eslint -c eslint.config.js '**/*.{js,jsx,ts,tsx}' && npx tsc -p tsconfig.json --skipLibCheck", - "stylelint": "npx stylelint --aei --config stylelint.config.js '**/*.{css,less}'", - "prettier": "npx prettier --write '**/*.{js,jsx,ts,tsx,md,html,css,less}'", "iconfont": "npx antm-icon --font-family antmuifont --input-path https://at.alicdn.com/t/font_2744513_7eeet2akdo.css --output-path src/style/components/iconfont.less", "watch": "npx antm-vantui-cli watch", "build": "npx antm-vantui-cli build", @@ -58,15 +55,9 @@ "use-deep-compare-effect": "^1.8.1" }, "devDependencies": { - "@antmjs/eslint": "^1.20.4", - "@antmjs/iconfont": "^1.20.4", - "@antmjs/stylelint": "^1.20.4", + "@antmjs/iconfont": "^1.21.0", "@tarojs/components": "^3.5.3", "@tarojs/taro": "^3.5.3", - "@types/lodash.flow": "^3.5.6", - "eslint": "^8.21.0", - "prettier": "^2.7.1", - "stylelint": "^13.13.1", - "typescript": "^4.7.4" + "@types/lodash.flow": "^3.5.6" } } diff --git a/packages/vantui/src/utils/index.ts b/packages/vantui/src/utils/index.ts index 1711e848d..76747d359 100644 --- a/packages/vantui/src/utils/index.ts +++ b/packages/vantui/src/utils/index.ts @@ -1,7 +1,7 @@ import type ANTMUI from '../../types/normal' import { useCallback, useRef, useState } from 'react' import { nextTick, createSelectorQuery, SelectorQuery } from '@tarojs/taro' -import { isObject, isString } from './type' +import { isNumber, isObject, isString } from './type' export function parse(str: string, decode = true): any { const params: any = {} @@ -23,6 +23,9 @@ export function parse(str: string, decode = true): any { if (isString(vvalue)) { try { params[kkey] = JSON.parse(vvalue) + if (isNumber(params[kkey]) && params[kkey] + '' !== vvalue + '') { + params[kkey] = vvalue + } } catch (error) { params[kkey] = vvalue } diff --git a/tsconfig.json b/tsconfig.json index 980dbd495..2c4632041 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -46,7 +46,6 @@ "packages/**/src", "packages/**/scripts", "packages/**/docs", - "packages/**/lib", "packages/**/types", "packages/**/config", "packages/**/__test__" diff --git a/yarn.lock b/yarn.lock index 011230f11..429cc60a7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -133,10 +133,10 @@ "@jridgewell/gen-mapping" "^0.1.0" "@jridgewell/trace-mapping" "^0.3.9" -"@antmjs/babel-preset@1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/babel-preset/-/babel-preset-1.20.4.tgz#a08f093e6f86a4345d78dc673fbcbd5dccf8eabd" - integrity sha512-FNP6ebd3UeSkITXcMYGxdOr0yTZGzYlR25eHYptkkn8wVuN8pV0tsRJhsK7CGxj35QtCjYb670XzLBwyYxR/cg== +"@antmjs/babel-preset@1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/babel-preset/-/babel-preset-1.21.0.tgz#f0ea3344e19bb4949a7a6ce29c9d82df1067fd2b" + integrity sha512-pWDBrYt1AB2lkSoO98gP8U5BW/4xy27JJLCxbWW0qlS8xyPGz6WSKxrEMjG9ImF/S5BL7G2EMZztuSYG4ptSwA== dependencies: "@babel/plugin-proposal-class-properties" "^7.14.5" "@babel/plugin-proposal-decorators" "^7.14.5" @@ -150,10 +150,10 @@ core-js "^3.15.2" react-refresh "^0.10.0" -"@antmjs/eslint@^1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/eslint/-/eslint-1.20.4.tgz#7a67518250b8e06eef043e408121fdc3a0eef563" - integrity sha512-5EARYr0q8ZgTeY91And+NUEkUH+ltQ9fRhNWNypZXbbqfcpXyL8+Djj+KTLYoqZnWYsiOIH/rH1yz9Asm5CLCw== +"@antmjs/eslint@^1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/eslint/-/eslint-1.21.0.tgz#b995316c6164b1c3a038493e940b022e4d4aaa79" + integrity sha512-7j6+d/bQu1IZrHOTHq9AZ0MTscufZce2QG84jfF2YT4yDjH+sO/RSj3MI0rspojrqpHZB7ZoDb3akAy1iS4KOw== dependencies: "@graphql-eslint/eslint-plugin" "^3.10.7" "@typescript-eslint/eslint-plugin" "^5.33.0" @@ -166,41 +166,41 @@ eslint-plugin-react "^7.30.1" eslint-plugin-react-hooks "^4.6.0" -"@antmjs/iconfont@^1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/iconfont/-/iconfont-1.20.4.tgz#02cb8cedf961dd43841f74c7178f3d4bdfaa21ea" - integrity sha512-8uxI4LTdRQnTljDRcszRz6pwD5cEVDJvXL8UN2FAMJtRG8tUbrZyk20KT5RlkgH1Go8rnJEh5aTjttfgZ99bcQ== +"@antmjs/iconfont@^1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/iconfont/-/iconfont-1.21.0.tgz#77a47342e4a73f7683c4ff88292f58bef335da14" + integrity sha512-p++/hix0EePtzuGMunt5GLyP+yqh2aCPRNVdphV3ar9lLC6HD2849mUt+ylllKqvlbtIxAx7FNUH+ew6Y+3uRQ== -"@antmjs/mini-fix@^1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/mini-fix/-/mini-fix-1.20.4.tgz#b1501ad638796699a0bb7311876aec1013398202" - integrity sha512-+1VaPQW9SXOyGu/UfwHX2FMawWwpi+43TmhlLg9x1UmmxDyi+PeIRwGmNpMhnMhxflwSuveK2kf7xwb0P02BUw== +"@antmjs/mini-fix@^1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/mini-fix/-/mini-fix-1.21.0.tgz#5930090e96200f9272b376b4258784dbcd810f5f" + integrity sha512-rS+x5zs8xrfRzOL0KHWhZ1k28V0cChLINfIWregEFG1fY7QSZ+T68cdiHxMrXOS7el/JNqQKCMpFXhOMnw9IvA== dependencies: - "@antmjs/utils" "1.20.4" + "@antmjs/utils" "1.21.0" "@babel/runtime-corejs3" "^7.14.7" -"@antmjs/plugin-global-fix@^1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/plugin-global-fix/-/plugin-global-fix-1.20.4.tgz#d7c5bb815ac77e03c0656b97636f342f56c523fb" - integrity sha512-dS/HtmmyB+CwGFzjCC5a1nBCJ8vH2ah+P8CTiKM0IoCk7cbkRsOrmUQSvdD1triL3FEtXyNlVM3Gq5wE2NKOYg== +"@antmjs/plugin-global-fix@^1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/plugin-global-fix/-/plugin-global-fix-1.21.0.tgz#c31873a7e2ea33a2f9d61e1060547c68fa68f571" + integrity sha512-iwTA6Y+df/M+vC1m2BZwH3Wjx/4DTXZPeCPMzJX2Jdbwn7n5VsvPJ2GsQRq5zlzksdDujjpgtFh9Qb0MSV1fAA== -"@antmjs/plugin-mini-fix@^1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/plugin-mini-fix/-/plugin-mini-fix-1.20.4.tgz#000d4b0c009cbb5ed6218fb46f1a965927a7804d" - integrity sha512-WowTY355YA65y1N1UPwCEePiFGeqxPc7BsTBr3IelHA+300U9f5PjPrtvFpYdrQp/ykniejaTK2g8eMqbeZZoQ== +"@antmjs/plugin-mini-fix@^1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/plugin-mini-fix/-/plugin-mini-fix-1.21.0.tgz#036fafd36a8e84479de0e60cd04d55570540d9ac" + integrity sha512-oy2HqNT9MBwkfHAUxk+QG0B/UckGn9d0myDiS5ARbfhaYSOuel6bF7cF/KRD0dTbyuN3oaLIj1y9l+ThVE2MaA== -"@antmjs/stylelint@^1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/stylelint/-/stylelint-1.20.4.tgz#317704e9ee3d8fc6a62b4cb71710027a96876a74" - integrity sha512-cxfrpmaYUv5WUenZhPWcuHUL5raPrGfMYEzV+iQ7VQ+eMhmrjWvwGcgDh8mafgNpZQ5nW+gzQr5SWlVEmrh+nQ== +"@antmjs/stylelint@^1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/stylelint/-/stylelint-1.21.0.tgz#1dd9a058d10b5102fb8439b51e971da71bde58e4" + integrity sha512-U9aQ+S2HouirxbNhex61WGnbT0uxFfzf78fgVpwrv/gO/8MtgbekzGvZY9KwudANzef1XgL3LK6WLNOpbHQtOA== dependencies: stylelint-config-prettier "^8.0.2" stylelint-config-standard "^22.0.0" -"@antmjs/utils@1.20.4": - version "1.20.4" - resolved "https://registry.npmmirror.com/@antmjs/utils/-/utils-1.20.4.tgz#442cf024756b56492ec76e1eef08a68fe5b92963" - integrity sha512-qZ+ij8idacBaj4fnfgz/W2xtmUh26o33nHHK1Yt5jnjEWSy0Q2KunDGSGtcbBZVdWkJw6XB972NQy57g/2RnLQ== +"@antmjs/utils@1.21.0": + version "1.21.0" + resolved "https://registry.npmmirror.com/@antmjs/utils/-/utils-1.21.0.tgz#96eec51406339b1657b69247dfe4f786f0593ddc" + integrity sha512-GV0X04/FkePneMNQvy/YTPBCzhfXAnZUo/NeTKHSuXVOs6jo0nh8ZSc1fLV03NJkLU7Mk+eO5dfVKfVqyYO0lA== dependencies: "@babel/runtime-corejs3" "^7.14.7"