From 2e6dbca06dc38576308297d0ba6331ec4274e8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Tue, 14 Jan 2020 17:20:15 +0800 Subject: [PATCH 001/626] Revert "chore: remove hooks ooops!" This reverts commit 8d4d965a85275373375bcd04563ec854c66d2f08. --- src/hooks/use-click-outside.ts | 21 ++++++++++++ src/hooks/use-global-event.ts | 46 +++++++++++++++++++++++++ src/hooks/use-lock-scroll.ts | 55 +++++++++++++++++++++++++++++ src/hooks/use-touch.ts | 63 ++++++++++++++++++++++++++++++++++ 4 files changed, 185 insertions(+) create mode 100644 src/hooks/use-click-outside.ts create mode 100644 src/hooks/use-global-event.ts create mode 100644 src/hooks/use-lock-scroll.ts create mode 100644 src/hooks/use-touch.ts diff --git a/src/hooks/use-click-outside.ts b/src/hooks/use-click-outside.ts new file mode 100644 index 000000000..db64eb2a0 --- /dev/null +++ b/src/hooks/use-click-outside.ts @@ -0,0 +1,21 @@ +import { Ref } from 'vue'; +import { useGlobalEvent } from './use-global-event'; + +export type UseClickOutsideOpitons = { + event: string; + callback: EventListener; + element: Ref; + flag?: Ref; +}; + +export function useClickOutside(options: UseClickOutsideOpitons) { + const { event = 'click', callback, element, flag } = options; + + function onClick(event: Event) { + if (!element.value.contains(event.target as Node)) { + callback(event); + } + } + + useGlobalEvent(document, event, onClick, false, flag); +} diff --git a/src/hooks/use-global-event.ts b/src/hooks/use-global-event.ts new file mode 100644 index 000000000..319c043bf --- /dev/null +++ b/src/hooks/use-global-event.ts @@ -0,0 +1,46 @@ +import { on, off } from '../utils/dom/event'; +import { + Ref, + watch, + onMounted, + onActivated, + onUnmounted, + onDeactivated +} from 'vue'; + +export function useGlobalEvent( + target: EventTarget, + event: string, + handler: EventListener, + passive = false, + flag?: Ref +) { + let binded: boolean; + + function add() { + if (binded || (flag && !flag.value)) { + return; + } + + on(target, event, handler, passive); + binded = true; + } + + function remove() { + if (binded) { + off(target, event, handler); + binded = false; + } + } + + if (flag) { + watch(() => { + flag.value ? add() : remove(); + }); + } + + onMounted(add); + onActivated(add); + onUnmounted(remove); + onDeactivated(remove); +} diff --git a/src/hooks/use-lock-scroll.ts b/src/hooks/use-lock-scroll.ts new file mode 100644 index 000000000..9783b2090 --- /dev/null +++ b/src/hooks/use-lock-scroll.ts @@ -0,0 +1,55 @@ +import { useTouch } from './use-touch'; +import { getScroller } from '../utils/dom/scroll'; +import { on, off, preventDefault } from '../utils/dom/event'; + +let count = 0; +const CLASSNAME = 'van-overflow-hidden'; + +export function useLockScroll(element: HTMLElement) { + const { start, move, deltaY, direction } = useTouch(); + + function onTouchMove(event: TouchEvent) { + move(event); + + if (direction.value !== 'vertical') { + return; + } + + let prevent = false; + const up = deltaY.value < 0; + const scroller = getScroller(event.target as HTMLElement, element); + const { scrollTop, scrollHeight, offsetHeight } = scroller as HTMLElement; + + if (scrollTop === 0) { + prevent = up && offsetHeight < scrollHeight; + } else if (scrollTop + offsetHeight >= scrollHeight) { + prevent = !up; + } + + if (prevent) { + preventDefault(event, true); + } + } + + function lock() { + if (!count) { + document.body.classList.add(CLASSNAME); + } + + count++; + on(document, 'touchstart', start); + on(document, 'touchmove', onTouchMove); + } + + lock(); + + return function unlock() { + count--; + off(document, 'touchstart', start); + off(document, 'touchmove', onTouchMove); + + if (!count) { + document.body.classList.remove(CLASSNAME); + } + }; +} diff --git a/src/hooks/use-touch.ts b/src/hooks/use-touch.ts new file mode 100644 index 000000000..aaaa5fb5c --- /dev/null +++ b/src/hooks/use-touch.ts @@ -0,0 +1,63 @@ +import { ref } from 'vue'; + +const MIN_DISTANCE = 10; + +function getDirection(x: number, y: number) { + if (x > y && x > MIN_DISTANCE) { + return 'horizontal'; + } + + if (y > x && y > MIN_DISTANCE) { + return 'vertical'; + } + + return ''; +} + +export function useTouch() { + const startX = ref(0); + const startY = ref(0); + const deltaX = ref(0); + const deltaY = ref(0); + const offsetX = ref(0); + const offsetY = ref(0); + const direction = ref(''); + + function reset() { + direction.value = ''; + deltaX.value = 0; + deltaY.value = 0; + offsetX.value = 0; + offsetY.value = 0; + } + + function start(event: TouchEvent) { + reset(); + startX.value = event.touches[0].clientX; + startY.value = event.touches[0].clientY; + } + + function move(event: TouchEvent) { + const touch = event.touches[0]; + deltaX.value = touch.clientX - this.startX; + deltaY.value = touch.clientY - this.startY; + offsetX.value = Math.abs(this.deltaX); + offsetY.value = Math.abs(this.deltaY); + + if (!direction.value) { + direction.value = getDirection(offsetX.value, offsetY.value); + } + } + + return { + move, + start, + startX, + startY, + deltaX, + deltaY, + offsetX, + offsetY, + direction + }; +} From e44d3955fcc1067ee1280b3daaf55473244d0f48 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 19 Apr 2020 14:24:58 +0800 Subject: [PATCH 002/626] chore(cli): vue global api change --- packages/vant-cli/site/desktop/main.js | 13 ++++++------- packages/vant-cli/site/desktop/router.js | 10 ++++------ packages/vant-cli/site/mobile/main.js | 20 +++++++++----------- packages/vant-cli/site/mobile/router.js | 14 ++++++-------- 4 files changed, 25 insertions(+), 32 deletions(-) diff --git a/packages/vant-cli/site/desktop/main.js b/packages/vant-cli/site/desktop/main.js index 33c2a7708..a98350d67 100644 --- a/packages/vant-cli/site/desktop/main.js +++ b/packages/vant-cli/site/desktop/main.js @@ -1,19 +1,18 @@ -import Vue from 'vue'; +import { createApp } from 'vue'; import App from './App'; +import VueRouter from 'vue-router'; import { router } from './router'; import { scrollToAnchor } from './utils'; -if (process.env.NODE_ENV !== 'production') { - Vue.config.productionTip = false; -} - -new Vue({ +const app = createApp({ el: '#app', mounted() { if (this.$route.hash) { scrollToAnchor(this.$route.hash); } }, - render: h => h(App), + render: (h) => h(App), router, }); + +app.use(VueRouter); diff --git a/packages/vant-cli/site/desktop/router.js b/packages/vant-cli/site/desktop/router.js index a55e60a9a..4e1e387a0 100644 --- a/packages/vant-cli/site/desktop/router.js +++ b/packages/vant-cli/site/desktop/router.js @@ -1,4 +1,4 @@ -import Vue from 'vue'; +import { nextTick } from 'vue'; import VueRouter from 'vue-router'; import { isMobile, decamelize } from '../common'; import { config, documents } from 'site-desktop-shared'; @@ -48,7 +48,7 @@ function getRoutes() { if (locales) { routes.push({ path: '*', - redirect: route => `/${getLangFromRoute(route)}/`, + redirect: (route) => `/${getLangFromRoute(route)}/`, }); } else { routes.push({ @@ -66,7 +66,7 @@ function getRoutes() { }); } - names.forEach(name => { + names.forEach((name) => { const { component, lang } = parseName(name); if (component === 'home') { @@ -98,8 +98,6 @@ function getRoutes() { return routes; } -Vue.use(VueRouter); - export const router = new VueRouter({ mode: 'hash', routes: getRoutes(), @@ -113,7 +111,7 @@ export const router = new VueRouter({ }); router.afterEach(() => { - Vue.nextTick(() => window.syncPath()); + nextTick(() => window.syncPath()); }); window.vueRouter = router; diff --git a/packages/vant-cli/site/mobile/main.js b/packages/vant-cli/site/mobile/main.js index 94c80f4ae..c003a4bb9 100644 --- a/packages/vant-cli/site/mobile/main.js +++ b/packages/vant-cli/site/mobile/main.js @@ -1,21 +1,19 @@ -import Vue from 'vue'; +import { createApp } from 'vue'; +import VueRouter from 'vue-router'; import DemoBlock from './components/DemoBlock'; import DemoSection from './components/DemoSection'; import { router } from './router'; import App from './App'; import '@vant/touch-emulator'; -if (process.env.NODE_ENV !== 'production') { - Vue.config.productionTip = false; -} - -Vue.component(DemoBlock.name, DemoBlock); -Vue.component(DemoSection.name, DemoSection); - setTimeout(() => { - new Vue({ - el: '#app', - render: h => h(App), + const app = createApp({ + render: (h) => h(App), router, }); + + app.use(VueRouter); + app.component(DemoBlock.name, DemoBlock); + app.component(DemoSection.name, DemoSection); + app.mount('#app'); }, 0); diff --git a/packages/vant-cli/site/mobile/router.js b/packages/vant-cli/site/mobile/router.js index c3f1d9fa0..6d52571fb 100644 --- a/packages/vant-cli/site/mobile/router.js +++ b/packages/vant-cli/site/mobile/router.js @@ -1,4 +1,4 @@ -import Vue from 'vue'; +import { nextTick } from 'vue'; import VueRouter from 'vue-router'; import DemoHome from './components/DemoHome'; import { decamelize } from '../common'; @@ -29,10 +29,10 @@ function getRoutes() { if (langs.length) { routes.push({ path: '*', - redirect: route => `/${getLangFromRoute(route)}/`, + redirect: (route) => `/${getLangFromRoute(route)}/`, }); - langs.forEach(lang => { + langs.forEach((lang) => { routes.push({ path: `/${lang}`, component: DemoHome, @@ -51,11 +51,11 @@ function getRoutes() { }); } - names.forEach(name => { + names.forEach((name) => { const component = decamelize(name); if (langs.length) { - langs.forEach(lang => { + langs.forEach((lang) => { routes.push({ name: `${lang}/${component}`, path: `/${lang}/${component}`, @@ -81,8 +81,6 @@ function getRoutes() { return routes; } -Vue.use(VueRouter); - export const router = new VueRouter({ mode: 'hash', routes: getRoutes(), @@ -91,7 +89,7 @@ export const router = new VueRouter({ router.afterEach(() => { if (!router.currentRoute.redirectedFrom) { - Vue.nextTick(window.syncPath); + nextTick(window.syncPath); } }); From 722aacb97fd2379517eafbd40dfee374330220e6 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 19 Apr 2020 14:25:28 +0800 Subject: [PATCH 003/626] chore: add vue-next deps --- package.json | 4 +- packages/vant-cli/package.json | 5 +- packages/vant-cli/yarn.lock | 50 +++++++-------- yarn.lock | 110 +++++++++++++++++++++++++++------ 4 files changed, 119 insertions(+), 50 deletions(-) diff --git a/package.json b/package.json index 8a0a4dd69..c0dd53d73 100644 --- a/package.json +++ b/package.json @@ -68,9 +68,9 @@ "devDependencies": { "@ls-lint/ls-lint": "^1.8.0", "@vant/cli": "^2.4.0", + "@vue/compiler-sfc": "^3.0.0-beta.2", "prettier": "^2.0.4", - "vue": "^2.6.11", - "vue-template-compiler": "^2.6.11" + "vue": "^3.0.0-beta.2" }, "sideEffects": [ "es/**/style/*", diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index dd75cedc1..df66ffd74 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -62,6 +62,7 @@ "babel-jest": "^25.3.0", "babel-loader": "^8.1.0", "babel-plugin-import": "^1.13.0", + "babel-plugin-transform-jsx-vue3": "^0.1.8", "cache-loader": "^4.1.0", "chokidar": "^3.3.1", "clean-css": "^4.2.3", @@ -96,8 +97,8 @@ "stylelint": "^13.3.1", "typescript": "^3.8.3", "vue-jest": "4.0.0-beta.2", - "vue-loader": "^15.9.1", - "vue-router": "^3.1.6", + "vue-loader": "^16.0.0-alpha.3", + "vue-router": "^4.0.0-alpha.7 ", "webpack": "^4.42.1", "webpack-dev-server": "3.10.3", "webpack-merge": "^4.2.2", diff --git a/packages/vant-cli/yarn.lock b/packages/vant-cli/yarn.lock index f738dba83..d5c12b2f8 100644 --- a/packages/vant-cli/yarn.lock +++ b/packages/vant-cli/yarn.lock @@ -1727,7 +1727,7 @@ source-map "~0.6.1" vue-template-es2015-compiler "^1.9.0" -"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.1.2": +"@vue/component-compiler-utils@^3.1.2": version "3.1.2" resolved "https://registry.npm.taobao.org/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.1.2.tgz#8213a5ff3202f9f2137fe55370f9e8b9656081c3" integrity sha1-ghOl/zIC+fITf+VTcPnouWVggcM= @@ -2356,6 +2356,13 @@ babel-plugin-jest-hoist@^25.2.6: dependencies: "@types/babel__traverse" "^7.0.6" +babel-plugin-transform-jsx-vue3@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-jsx-vue3/-/babel-plugin-transform-jsx-vue3-0.1.8.tgz#9cef48337cb407a4a503fec84175a9119710f984" + integrity sha512-nCM0utOBCQKaCQA/q1gVv/dVIar5wPicOeJ2WaJRy3lL4yB00Tyo85VeKtNvJ+nYKxPslZDUE40GJehLdsdMkg== + dependencies: + esutils "^2.0.2" + babel-preset-current-node-syntax@^0.1.2: version "0.1.2" resolved "https://registry.npm.taobao.org/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6" @@ -7164,7 +7171,7 @@ loader-runner@^2.4.0: resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== -loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: +loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== @@ -11603,11 +11610,6 @@ vue-eslint-parser@^7.0.0: esquery "^1.0.1" lodash "^4.17.15" -vue-hot-reload-api@^2.3.0: - version "2.3.4" - resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" - integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== - vue-jest@4.0.0-beta.2: version "4.0.0-beta.2" resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-4.0.0-beta.2.tgz#f2120ea9d24224aad3a100c2010b0760d47ee6fe" @@ -11620,29 +11622,21 @@ vue-jest@4.0.0-beta.2: source-map "^0.5.6" ts-jest "^23.10.5" -vue-loader@^15.9.1: - version "15.9.1" - resolved "https://registry.npm.taobao.org/vue-loader/download/vue-loader-15.9.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-loader%2Fdownload%2Fvue-loader-15.9.1.tgz#bd2ab8f3d281e51d7b81d15390a58424d142243e" - integrity sha1-vSq489KB5R17gdFTkKWEJNFCJD4= +vue-loader@^16.0.0-alpha.3: + version "16.0.0-alpha.3" + resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-16.0.0-alpha.3.tgz#3471a3325a07a94e569aa281f83361819e4ad280" + integrity sha512-aC7TyXfzGs30mgru4iSfmEC8ZQigwpetaBpr/Q0PA0DZa5lEX9NMT7py9SCrXVq7mZeaYaz0QC/kzuUZtnYMHw== dependencies: - "@vue/component-compiler-utils" "^3.1.0" - hash-sum "^1.0.2" - loader-utils "^1.1.0" - vue-hot-reload-api "^2.3.0" - vue-style-loader "^4.1.0" + chalk "^3.0.0" + hash-sum "^2.0.0" + loader-utils "^1.2.3" + merge-source-map "^1.1.0" + source-map "^0.6.1" -vue-router@^3.1.6: - version "3.1.6" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.1.6.tgz#45f5a3a3843e31702c061dd829393554e4328f89" - integrity sha512-GYhn2ynaZlysZMkFE5oCHRUTqE8BWs/a9YbKpNLi0i7xD6KG1EzDqpHQmv1F5gXjr8kL5iIVS8EOtRaVUEXTqA== - -vue-style-loader@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-4.1.2.tgz#dedf349806f25ceb4e64f3ad7c0a44fba735fcf8" - integrity sha512-0ip8ge6Gzz/Bk0iHovU9XAUQaFt/G2B61bnWa2tCcqqdgfHs1lF9xXorFbE55Gmy92okFT+8bfmySuUOu13vxQ== - dependencies: - hash-sum "^1.0.2" - loader-utils "^1.0.2" +"vue-router@^4.0.0-alpha.7 ": + version "4.0.0-alpha.7" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.0-alpha.7.tgz#b3babfa831710bac189bba1f81a79cb0d0c3b524" + integrity sha512-B1wghgEeFZSjBRPa6rTjy82/b8ArfrirY+Y8ZxZXdkOg4mQpfSPnTfgWGNa1n4dCLDiUiNl1BYhhW0s4fqV3gQ== vue-template-es2015-compiler@^1.9.0: version "1.9.1" diff --git a/yarn.lock b/yarn.lock index c2fe7a12c..3f631eb2a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1787,6 +1787,50 @@ "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" camelcase "^5.0.0" +"@vue/compiler-core@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-beta.2.tgz#ac8f14856cd874cb22d89181e8c3bddf810b8261" + integrity sha512-/c3ePWU9T7xwn0J/YRlxCxnxqphNVlcXisnI6aMoK3pjvQFXOMD6tfrHUtepCrQLNdKlhxNjqe3Q625Z64Z0kQ== + dependencies: + "@babel/parser" "^7.8.6" + "@babel/types" "^7.8.6" + "@vue/shared" "3.0.0-beta.2" + estree-walker "^0.8.1" + source-map "^0.6.1" + +"@vue/compiler-dom@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-beta.2.tgz#344263f4e50258496bfdbd01a9a85a7b842e96de" + integrity sha512-VZwvnsWPoi0/MR5CF5p5VhRGk3AkM9MQYt/pMaXDmbl09kWKVjQZubCRvpzuyjjm1QnV1yrSaqTZWDAIYbKYtw== + dependencies: + "@vue/compiler-core" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.2" + +"@vue/compiler-sfc@^3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0-beta.2.tgz#610697d29e067165d5e2ccf81bdd238399b6d156" + integrity sha512-v3zQ8fR+Oc8U/WZFmJY641b05ayP1cdngZMn8PUgPecRwjQkdR/k9ikCMZpsrWtoS4am0e3PHyCt/BBZCxA4nA== + dependencies: + "@vue/compiler-core" "3.0.0-beta.2" + "@vue/compiler-dom" "3.0.0-beta.2" + "@vue/compiler-ssr" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.2" + consolidate "^0.15.1" + hash-sum "^2.0.0" + lru-cache "^5.1.1" + merge-source-map "^1.1.0" + postcss "^7.0.21" + postcss-selector-parser "^6.0.2" + source-map "^0.6.1" + +"@vue/compiler-ssr@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.0-beta.2.tgz#05c965d8f5a6362928959d4f8a7b75b07cf68c45" + integrity sha512-+g0u8Zgns3uR6E3338yCGBz927mOdzzsCFxBKTS6O2WRXhUZ1vcRerigruRRF+LDiWtFm2txsjj70CcMqF4D/w== + dependencies: + "@vue/compiler-dom" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.2" + "@vue/component-compiler-utils@^2.4.0": version "2.6.0" resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-2.6.0.tgz#aa46d2a6f7647440b0b8932434d22f12371e543b" @@ -1817,6 +1861,35 @@ source-map "~0.6.1" vue-template-es2015-compiler "^1.9.0" +"@vue/reactivity@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-beta.2.tgz#216922e264dc447a508f756374c09fb26a7cbe1c" + integrity sha512-vAYHiBmpHfLAJulssTTTlvdHtyyKeOCG3qCu/TxDhu3NFHEfrt4eytR2atR6EbpTb853/QKcoW3k6L6g/znxAw== + dependencies: + "@vue/shared" "3.0.0-beta.2" + +"@vue/runtime-core@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-beta.2.tgz#0413292d8746c532527dbcdbfcbc56be312f05ad" + integrity sha512-tcxNNV7y+H2046F79iw90OdwyxvMEqJ5iOQTsOvfVf2hBNrCWPG1tAU+kywFBlBY4I26k7XB/Q1ZdHb2q8YLaA== + dependencies: + "@vue/reactivity" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.2" + +"@vue/runtime-dom@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-beta.2.tgz#957a59ecfcdf54619e4d40d2e2967587ea58728d" + integrity sha512-swWm7fa3JKEGE0KYVevYqaBTSGxx/bmlwJTbJcnnNgdZZGtWUQsUzXCk6JKRuoYjy+iU0ONcHidEhpwdazH9Aw== + dependencies: + "@vue/runtime-core" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.2" + csstype "^2.6.8" + +"@vue/shared@3.0.0-beta.2": + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-beta.2.tgz#6659413868b0ba0b96260cbf3c9ed99f2d0f90ef" + integrity sha512-ED5oa+ZOcjAJkWEzL0zFZ4QG89L23DrW9LBBGT6YBUhBmOsf9BKii2JIBfdxWYwRkjAhbHffQH0mc6rI2famug== + "@vue/test-utils@1.0.0-beta.29": version "1.0.0-beta.29" resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.0-beta.29.tgz#c942cf25e891cf081b6a03332b4ae1ef430726f0" @@ -3776,6 +3849,11 @@ cssstyle@^2.0.0: dependencies: cssom "~0.3.6" +csstype@^2.6.8: + version "2.6.10" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" + integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== + currently-unhandled@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -3821,11 +3899,6 @@ dateformat@^3.0.0: resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== -de-indent@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" - integrity sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0= - debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" @@ -4550,6 +4623,11 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== +estree-walker@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.8.1.tgz#6230ce2ec9a5cb03888afcaf295f97d90aa52b79" + integrity sha512-H6cJORkqvrNziu0KX2hqOMAlA2CiuAxHeGJXSIoKA/KLv229Dw806J3II6mKTm5xiDX1At1EXCfsOQPB+tMB+g== + esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" @@ -5571,7 +5649,7 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -he@^1.1.0, he@^1.2.0: +he@^1.2.0: version "1.2.0" resolved "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha1-hK5l+n6vsWX922FWauFLrwVmTw8= @@ -11734,23 +11812,19 @@ vue-style-loader@^4.1.0: hash-sum "^1.0.2" loader-utils "^1.0.2" -vue-template-compiler@^2.6.11: - version "2.6.11" - resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz#c04704ef8f498b153130018993e56309d4698080" - integrity sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA== - dependencies: - de-indent "^1.0.2" - he "^1.1.0" - vue-template-es2015-compiler@^1.9.0: version "1.9.1" resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== -vue@^2.6.11: - version "2.6.11" - resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.11.tgz#76594d877d4b12234406e84e35275c6d514125c5" - integrity sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ== +vue@^3.0.0-beta.2: + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-beta.2.tgz#f808b498d10cbebe4007738aa2130bd0802f393d" + integrity sha512-/HYhK9i8PWM0fL38YflFK/vY1ots+JyNI2GZa8VtDqj4jD3+2UZ0CH0kjmw9YTmRtHdsU65CXGkVuA3EMV3mXQ== + dependencies: + "@vue/compiler-dom" "3.0.0-beta.2" + "@vue/runtime-dom" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.2" w3c-hr-time@^1.0.1: version "1.0.2" From 7551238d37a9ecbf2a59e7f930d10f8ce8399f11 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 19 Apr 2020 14:33:56 +0800 Subject: [PATCH 004/626] chore: vue-router-next api change --- packages/vant-cli/site/desktop/App.vue | 9 ++++++++- packages/vant-cli/site/desktop/main.js | 15 +-------------- packages/vant-cli/site/desktop/router.js | 6 +++--- packages/vant-cli/site/mobile/main.js | 15 +++++---------- packages/vant-cli/site/mobile/router.js | 6 +++--- 5 files changed, 20 insertions(+), 31 deletions(-) diff --git a/packages/vant-cli/site/desktop/App.vue b/packages/vant-cli/site/desktop/App.vue index 6e7cbc46f..79610a9e1 100644 --- a/packages/vant-cli/site/desktop/App.vue +++ b/packages/vant-cli/site/desktop/App.vue @@ -16,6 +16,7 @@ import VanDoc from './components'; import { config, packageVersion } from 'site-desktop-shared'; import { setLang } from '../common/locales'; +import { scrollToAnchor } from './utils'; export default { components: { @@ -39,7 +40,7 @@ export default { langConfigs() { const { locales = {} } = config.site; - return Object.keys(locales).map(key => ({ + return Object.keys(locales).map((key) => ({ lang: key, label: locales[key].langLabel || '', })); @@ -75,6 +76,12 @@ export default { this.setTitle(); }, + mounted() { + if (this.$route.hash) { + scrollToAnchor(this.$route.hash); + } + }, + methods: { setTitle() { let { title } = this.config; diff --git a/packages/vant-cli/site/desktop/main.js b/packages/vant-cli/site/desktop/main.js index a98350d67..0b0619760 100644 --- a/packages/vant-cli/site/desktop/main.js +++ b/packages/vant-cli/site/desktop/main.js @@ -1,18 +1,5 @@ import { createApp } from 'vue'; import App from './App'; -import VueRouter from 'vue-router'; import { router } from './router'; -import { scrollToAnchor } from './utils'; -const app = createApp({ - el: '#app', - mounted() { - if (this.$route.hash) { - scrollToAnchor(this.$route.hash); - } - }, - render: (h) => h(App), - router, -}); - -app.use(VueRouter); +createApp(App).use(router).mount('#app'); diff --git a/packages/vant-cli/site/desktop/router.js b/packages/vant-cli/site/desktop/router.js index 4e1e387a0..eea47a9f7 100644 --- a/packages/vant-cli/site/desktop/router.js +++ b/packages/vant-cli/site/desktop/router.js @@ -1,5 +1,5 @@ import { nextTick } from 'vue'; -import VueRouter from 'vue-router'; +import { createRouter, createWebHashHistory } from 'vue-router'; import { isMobile, decamelize } from '../common'; import { config, documents } from 'site-desktop-shared'; import { getLang, setDefaultLang } from '../common/locales'; @@ -98,8 +98,8 @@ function getRoutes() { return routes; } -export const router = new VueRouter({ - mode: 'hash', +export const router = createRouter({ + history: createWebHashHistory(), routes: getRoutes(), scrollBehavior(to) { if (to.hash) { diff --git a/packages/vant-cli/site/mobile/main.js b/packages/vant-cli/site/mobile/main.js index c003a4bb9..63da68116 100644 --- a/packages/vant-cli/site/mobile/main.js +++ b/packages/vant-cli/site/mobile/main.js @@ -1,5 +1,4 @@ import { createApp } from 'vue'; -import VueRouter from 'vue-router'; import DemoBlock from './components/DemoBlock'; import DemoSection from './components/DemoSection'; import { router } from './router'; @@ -7,13 +6,9 @@ import App from './App'; import '@vant/touch-emulator'; setTimeout(() => { - const app = createApp({ - render: (h) => h(App), - router, - }); - - app.use(VueRouter); - app.component(DemoBlock.name, DemoBlock); - app.component(DemoSection.name, DemoSection); - app.mount('#app'); + createApp(App) + .use(router) + .component(DemoBlock.name, DemoBlock) + .component(DemoSection.name, DemoSection) + .mount('#app'); }, 0); diff --git a/packages/vant-cli/site/mobile/router.js b/packages/vant-cli/site/mobile/router.js index 6d52571fb..ec3e37698 100644 --- a/packages/vant-cli/site/mobile/router.js +++ b/packages/vant-cli/site/mobile/router.js @@ -1,5 +1,5 @@ import { nextTick } from 'vue'; -import VueRouter from 'vue-router'; +import { createRouter, createWebHashHistory } from 'vue-router'; import DemoHome from './components/DemoHome'; import { decamelize } from '../common'; import { demos, config } from 'site-mobile-shared'; @@ -81,8 +81,8 @@ function getRoutes() { return routes; } -export const router = new VueRouter({ - mode: 'hash', +export const router = createRouter({ + mode: createWebHashHistory(), routes: getRoutes(), scrollBehavior: (to, from, savedPosition) => savedPosition || { x: 0, y: 0 }, }); From 6abb2fc0810682aad5ff7336c7622c797c099bb9 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 14:36:07 +0800 Subject: [PATCH 005/626] chore: bump deps --- package.json | 4 +- packages/vant-cli/package.json | 2 +- packages/vant-cli/yarn.lock | 16 +- yarn.lock | 261 ++++++++++++++++++++++++++------- 4 files changed, 220 insertions(+), 63 deletions(-) diff --git a/package.json b/package.json index 1f6d2b8b6..9bac07003 100644 --- a/package.json +++ b/package.json @@ -57,9 +57,9 @@ "devDependencies": { "@ls-lint/ls-lint": "^1.8.0", "@vant/cli": "^2.5.1", - "@vue/compiler-sfc": "^3.0.0-beta.2", + "@vue/compiler-sfc": "^3.0.0-beta.14", "prettier": "^2.0.4", - "vue": "^3.0.0-beta.2" + "vue": "^3.0.0-beta.14" }, "sideEffects": [ "es/**/style/*", diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index a0cc5001b..5e4c2313a 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -98,7 +98,7 @@ "stylelint": "^13.3.3", "typescript": "^3.8.3", "vue-jest": "4.0.0-beta.2", - "vue-loader": "^16.0.0-alpha.3", + "vue-loader": "^16.0.0-beta.3", "vue-router": "^4.0.0-alpha.12", "webpack": "^4.43.0", "webpack-dev-server": "3.10.3", diff --git a/packages/vant-cli/yarn.lock b/packages/vant-cli/yarn.lock index eff5c9648..8651cd6bd 100644 --- a/packages/vant-cli/yarn.lock +++ b/packages/vant-cli/yarn.lock @@ -1426,6 +1426,13 @@ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.1.tgz#dc488842312a7f075149312905b5e3c0b054c79d" integrity sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw== +"@types/mini-css-extract-plugin@^0.9.1": + version "0.9.1" + resolved "https://registry.npmjs.org/@types/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.1.tgz#d4bdde5197326fca039d418f4bdda03dc74dc451" + integrity sha512-+mN04Oszdz9tGjUP/c1ReVwJXxSniLd7lF++sv+8dkABxVNthg6uccei+4ssKxRHGoMmPxdn7uBdJWONSJGTGQ== + dependencies: + "@types/webpack" "*" + "@types/minimatch@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -11618,11 +11625,12 @@ vue-jest@4.0.0-beta.2: source-map "^0.5.6" ts-jest "^23.10.5" -vue-loader@^16.0.0-alpha.3: - version "16.0.0-alpha.3" - resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-16.0.0-alpha.3.tgz#3471a3325a07a94e569aa281f83361819e4ad280" - integrity sha512-aC7TyXfzGs30mgru4iSfmEC8ZQigwpetaBpr/Q0PA0DZa5lEX9NMT7py9SCrXVq7mZeaYaz0QC/kzuUZtnYMHw== +vue-loader@^16.0.0-beta.3: + version "16.0.0-beta.3" + resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.3.tgz#2374094399fed98a8a5750912f3caaaefa814553" + integrity sha512-B1jRmai+/sr5PDkRqZe6KllBGMJb4+AsjA44yg1dAod8W+tIdvKTffVEl+5lcXSZy5NsjEx3KqpvV6qq8l/ggA== dependencies: + "@types/mini-css-extract-plugin" "^0.9.1" chalk "^3.0.0" hash-sum "^2.0.0" loader-utils "^1.2.3" diff --git a/yarn.lock b/yarn.lock index 25849ff8c..093b18c42 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1698,49 +1698,50 @@ "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" camelcase "^5.0.0" -"@vue/compiler-core@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-beta.2.tgz#ac8f14856cd874cb22d89181e8c3bddf810b8261" - integrity sha512-/c3ePWU9T7xwn0J/YRlxCxnxqphNVlcXisnI6aMoK3pjvQFXOMD6tfrHUtepCrQLNdKlhxNjqe3Q625Z64Z0kQ== +"@vue/compiler-core@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/compiler-core/download/@vue/compiler-core-3.0.0-beta.14.tgz#69019b5c3da8335e6d83f81b37648caf120dbacd" + integrity sha1-aQGbXD2oM15tg/gbN2SMrxINus0= dependencies: "@babel/parser" "^7.8.6" "@babel/types" "^7.8.6" - "@vue/shared" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.14" estree-walker "^0.8.1" source-map "^0.6.1" -"@vue/compiler-dom@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-beta.2.tgz#344263f4e50258496bfdbd01a9a85a7b842e96de" - integrity sha512-VZwvnsWPoi0/MR5CF5p5VhRGk3AkM9MQYt/pMaXDmbl09kWKVjQZubCRvpzuyjjm1QnV1yrSaqTZWDAIYbKYtw== +"@vue/compiler-dom@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/compiler-dom/download/@vue/compiler-dom-3.0.0-beta.14.tgz#2ea1c165e06e9630e687a7a5cbde4e8b20b064ac" + integrity sha1-LqHBZeBuljDmh6ely95OiyCwZKw= dependencies: - "@vue/compiler-core" "3.0.0-beta.2" - "@vue/shared" "3.0.0-beta.2" + "@vue/compiler-core" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.14" -"@vue/compiler-sfc@^3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0-beta.2.tgz#610697d29e067165d5e2ccf81bdd238399b6d156" - integrity sha512-v3zQ8fR+Oc8U/WZFmJY641b05ayP1cdngZMn8PUgPecRwjQkdR/k9ikCMZpsrWtoS4am0e3PHyCt/BBZCxA4nA== +"@vue/compiler-sfc@^3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/compiler-sfc/download/@vue/compiler-sfc-3.0.0-beta.14.tgz#3984416c0ed1bbdfbeee9d33c8a2c1152ed00770" + integrity sha1-OYRBbA7Ru9++7p0zyKLBFS7QB3A= dependencies: - "@vue/compiler-core" "3.0.0-beta.2" - "@vue/compiler-dom" "3.0.0-beta.2" - "@vue/compiler-ssr" "3.0.0-beta.2" - "@vue/shared" "3.0.0-beta.2" + "@vue/compiler-core" "3.0.0-beta.14" + "@vue/compiler-dom" "3.0.0-beta.14" + "@vue/compiler-ssr" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.14" consolidate "^0.15.1" hash-sum "^2.0.0" lru-cache "^5.1.1" merge-source-map "^1.1.0" - postcss "^7.0.21" + postcss "^7.0.27" + postcss-modules "^2.0.0" postcss-selector-parser "^6.0.2" source-map "^0.6.1" -"@vue/compiler-ssr@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.0-beta.2.tgz#05c965d8f5a6362928959d4f8a7b75b07cf68c45" - integrity sha512-+g0u8Zgns3uR6E3338yCGBz927mOdzzsCFxBKTS6O2WRXhUZ1vcRerigruRRF+LDiWtFm2txsjj70CcMqF4D/w== +"@vue/compiler-ssr@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/compiler-ssr/download/@vue/compiler-ssr-3.0.0-beta.14.tgz#e5a0dc1afcaf4f110e2e447b41bb3d8172e3e3e9" + integrity sha1-5aDcGvyvTxEOLkR7Qbs9gXLj4+k= dependencies: - "@vue/compiler-dom" "3.0.0-beta.2" - "@vue/shared" "3.0.0-beta.2" + "@vue/compiler-dom" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.14" "@vue/component-compiler-utils@^2.4.0": version "2.6.0" @@ -1773,34 +1774,34 @@ optionalDependencies: prettier "^1.18.2" -"@vue/reactivity@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-beta.2.tgz#216922e264dc447a508f756374c09fb26a7cbe1c" - integrity sha512-vAYHiBmpHfLAJulssTTTlvdHtyyKeOCG3qCu/TxDhu3NFHEfrt4eytR2atR6EbpTb853/QKcoW3k6L6g/znxAw== +"@vue/reactivity@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/reactivity/download/@vue/reactivity-3.0.0-beta.14.tgz#a041ec24ce2e545583a6a1a42774311c16870a91" + integrity sha1-oEHsJM4uVFWDpqGkJ3QxHBaHCpE= dependencies: - "@vue/shared" "3.0.0-beta.2" + "@vue/shared" "3.0.0-beta.14" -"@vue/runtime-core@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-beta.2.tgz#0413292d8746c532527dbcdbfcbc56be312f05ad" - integrity sha512-tcxNNV7y+H2046F79iw90OdwyxvMEqJ5iOQTsOvfVf2hBNrCWPG1tAU+kywFBlBY4I26k7XB/Q1ZdHb2q8YLaA== +"@vue/runtime-core@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/runtime-core/download/@vue/runtime-core-3.0.0-beta.14.tgz#4f8162befd6ad1ac55cc6c142edc8301b090658a" + integrity sha1-T4Fivv1q0axVzGwULtyDAbCQZYo= dependencies: - "@vue/reactivity" "3.0.0-beta.2" - "@vue/shared" "3.0.0-beta.2" + "@vue/reactivity" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.14" -"@vue/runtime-dom@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-beta.2.tgz#957a59ecfcdf54619e4d40d2e2967587ea58728d" - integrity sha512-swWm7fa3JKEGE0KYVevYqaBTSGxx/bmlwJTbJcnnNgdZZGtWUQsUzXCk6JKRuoYjy+iU0ONcHidEhpwdazH9Aw== +"@vue/runtime-dom@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/runtime-dom/download/@vue/runtime-dom-3.0.0-beta.14.tgz#080e9dd48a95da639f9fcc6d70a2d9620aec6ab8" + integrity sha1-CA6d1IqV2mOfn8xtcKLZYgrsarg= dependencies: - "@vue/runtime-core" "3.0.0-beta.2" - "@vue/shared" "3.0.0-beta.2" + "@vue/runtime-core" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.14" csstype "^2.6.8" -"@vue/shared@3.0.0-beta.2": - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-beta.2.tgz#6659413868b0ba0b96260cbf3c9ed99f2d0f90ef" - integrity sha512-ED5oa+ZOcjAJkWEzL0zFZ4QG89L23DrW9LBBGT6YBUhBmOsf9BKii2JIBfdxWYwRkjAhbHffQH0mc6rI2famug== +"@vue/shared@3.0.0-beta.14": + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/@vue/shared/download/@vue/shared-3.0.0-beta.14.tgz#886afe5c233a5b255c186142324c40f114958af5" + integrity sha1-iGr+XCM6WyVcGGFCMkxA8RSVivU= "@vue/test-utils@1.0.0-beta.29": version "1.0.0-beta.29" @@ -2113,6 +2114,11 @@ ansi-regex@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -2931,6 +2937,17 @@ chalk@4.0.0, chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.npm.taobao.org/chalk/download/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -3692,6 +3709,18 @@ css-loader@^3.5.3: schema-utils "^2.6.6" semver "^6.3.0" +css-modules-loader-core@^1.1.0: + version "1.1.0" + resolved "https://registry.npm.taobao.org/css-modules-loader-core/download/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16" + integrity sha1-WQhmgpShvs0mGuCkziGwtVHyHRY= + dependencies: + icss-replace-symbols "1.1.0" + postcss "6.0.1" + postcss-modules-extract-imports "1.1.0" + postcss-modules-local-by-default "1.2.0" + postcss-modules-scope "1.1.0" + postcss-modules-values "1.3.0" + css-select@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" @@ -3702,6 +3731,15 @@ css-select@^1.1.0: domutils "1.5.1" nth-check "~1.0.1" +css-selector-tokenizer@^0.7.0: + version "0.7.2" + resolved "https://registry.npm.taobao.org/css-selector-tokenizer/download/css-selector-tokenizer-0.7.2.tgz?cache=0&sync_timestamp=1583233392235&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-selector-tokenizer%2Fdownload%2Fcss-selector-tokenizer-0.7.2.tgz#11e5e27c9a48d90284f22d45061c303d7a25ad87" + integrity sha1-EeXifJpI2QKE8i1FBhwwPXolrYc= + dependencies: + cssesc "^3.0.0" + fastparse "^1.1.2" + regexpu-core "^4.6.0" + css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" @@ -4783,6 +4821,11 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fastparse@^1.1.2: + version "1.1.2" + resolved "https://registry.npm.taobao.org/fastparse/download/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" + integrity sha1-kXKMWllC7O2FMSg8eUQe5BIsNak= + fastq@^1.6.0: version "1.6.1" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.1.tgz#4570c74f2ded173e71cf0beb08ac70bb85826791" @@ -5115,6 +5158,13 @@ functional-red-black-tree@^1.0.1: resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= +generic-names@^2.0.1: + version "2.0.1" + resolved "https://registry.npm.taobao.org/generic-names/download/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872" + integrity sha1-+KN46tLMqno08DF7BVVIMq5BuHI= + dependencies: + loader-utils "^1.1.0" + gensync@^1.0.0-beta.1: version "1.0.0-beta.1" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" @@ -5443,6 +5493,18 @@ hard-rejection@^2.0.0: resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.taobao.org/has-ansi/download/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -5769,6 +5831,11 @@ iconv-lite@0.4.24, iconv-lite@^0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" +icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npm.taobao.org/icss-replace-symbols/download/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= + icss-utils@^4.0.0, icss-utils@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" @@ -7264,6 +7331,11 @@ lodash._reinterpolate@^3.0.0: resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.npm.taobao.org/lodash.camelcase/download/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= + lodash.find@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" @@ -8776,6 +8848,13 @@ postcss-media-query-parser@^0.2.3: resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ= +postcss-modules-extract-imports@1.1.0: + version "1.1.0" + resolved "https://registry.npm.taobao.org/postcss-modules-extract-imports/download/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb" + integrity sha1-thTJcgvmgW6u41+zpfqh26agXds= + dependencies: + postcss "^6.0.1" + postcss-modules-extract-imports@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" @@ -8783,6 +8862,14 @@ postcss-modules-extract-imports@^2.0.0: dependencies: postcss "^7.0.5" +postcss-modules-local-by-default@1.2.0: + version "1.2.0" + resolved "https://registry.npm.taobao.org/postcss-modules-local-by-default/download/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" + integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + postcss-modules-local-by-default@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" @@ -8793,6 +8880,14 @@ postcss-modules-local-by-default@^3.0.2: postcss-selector-parser "^6.0.2" postcss-value-parser "^4.0.0" +postcss-modules-scope@1.1.0: + version "1.1.0" + resolved "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" + integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + postcss-modules-scope@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" @@ -8801,6 +8896,14 @@ postcss-modules-scope@^2.2.0: postcss "^7.0.6" postcss-selector-parser "^6.0.0" +postcss-modules-values@1.3.0: + version "1.3.0" + resolved "https://registry.npm.taobao.org/postcss-modules-values/download/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" + integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= + dependencies: + icss-replace-symbols "^1.1.0" + postcss "^6.0.1" + postcss-modules-values@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" @@ -8809,6 +8912,17 @@ postcss-modules-values@^3.0.0: icss-utils "^4.0.0" postcss "^7.0.6" +postcss-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.taobao.org/postcss-modules/download/postcss-modules-2.0.0.tgz?cache=0&sync_timestamp=1586850154478&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-modules%2Fdownload%2Fpostcss-modules-2.0.0.tgz#473d0d7326651d8408585c2a154115d5cb36cce0" + integrity sha1-Rz0NcyZlHYQIWFwqFUEV1cs2zOA= + dependencies: + css-modules-loader-core "^1.1.0" + generic-names "^2.0.1" + lodash.camelcase "^4.3.0" + postcss "^7.0.1" + string-hash "^1.1.1" + postcss-reporter@^6.0.0, postcss-reporter@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-6.0.1.tgz#7c055120060a97c8837b4e48215661aafb74245f" @@ -8912,6 +9026,24 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.3: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== +postcss@6.0.1: + version "6.0.1" + resolved "https://registry.npm.taobao.org/postcss/download/postcss-6.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss%2Fdownload%2Fpostcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" + integrity sha1-AA29H47vIXqjaLmiEsX8QLKo8/I= + dependencies: + chalk "^1.1.3" + source-map "^0.5.6" + supports-color "^3.2.3" + +postcss@^6.0.1: + version "6.0.23" + resolved "https://registry.npm.taobao.org/postcss/download/postcss-6.0.23.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss%2Fdownload%2Fpostcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" + integrity sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ= + dependencies: + chalk "^2.4.1" + source-map "^0.6.1" + supports-color "^5.4.0" + postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.13, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.28, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7: version "7.0.28" resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.28.tgz#d349ced7743475717ba91f6810efb58c51fb5dbb" @@ -9408,7 +9540,7 @@ regexpp@^3.0.0: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e" integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g== -regexpu-core@^4.7.0: +regexpu-core@^4.6.0, regexpu-core@^4.7.0: version "4.7.0" resolved "https://registry.npm.taobao.org/regexpu-core/download/regexpu-core-4.7.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregexpu-core%2Fdownload%2Fregexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" integrity sha1-/L9FjFBDGwu3tF1pZ7gZLZHz2Tg= @@ -10439,6 +10571,11 @@ string-argv@0.3.1: resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== +string-hash@^1.1.1: + version "1.1.3" + resolved "https://registry.npm.taobao.org/string-hash/download/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" + integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= + string-length@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" @@ -10820,7 +10957,19 @@ supports-color@7.1.0, supports-color@^7.0.0, supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^5.3.0: +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-2.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-color%2Fdownload%2Fsupports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^3.2.3: + version "3.2.3" + resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-3.2.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-color%2Fdownload%2Fsupports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= + dependencies: + has-flag "^1.0.0" + +supports-color@^5.3.0, supports-color@^5.4.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -11704,14 +11853,14 @@ vue-template-es2015-compiler@^1.9.0: resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== -vue@^3.0.0-beta.2: - version "3.0.0-beta.2" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-beta.2.tgz#f808b498d10cbebe4007738aa2130bd0802f393d" - integrity sha512-/HYhK9i8PWM0fL38YflFK/vY1ots+JyNI2GZa8VtDqj4jD3+2UZ0CH0kjmw9YTmRtHdsU65CXGkVuA3EMV3mXQ== +vue@^3.0.0-beta.14: + version "3.0.0-beta.14" + resolved "https://registry.npm.taobao.org/vue/download/vue-3.0.0-beta.14.tgz#d2c8739e00c4a4a06b519c14c57d204c350c980c" + integrity sha1-0shzngDEpKBrUZwUxX0gTDUMmAw= dependencies: - "@vue/compiler-dom" "3.0.0-beta.2" - "@vue/runtime-dom" "3.0.0-beta.2" - "@vue/shared" "3.0.0-beta.2" + "@vue/compiler-dom" "3.0.0-beta.14" + "@vue/runtime-dom" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.14" w3c-hr-time@^1.0.1: version "1.0.2" From d697026b2ca5754367d5f79ac8178e8763692ef4 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 14:49:14 +0800 Subject: [PATCH 006/626] feat(markdown-loader): compatible with vue 3 --- packages/vant-cli/package.json | 2 +- packages/vant-cli/yarn.lock | 14 +++++++------- packages/vant-markdown-loader/package.json | 2 +- packages/vant-markdown-loader/src/index.js | 18 ++++++++---------- 4 files changed, 17 insertions(+), 19 deletions(-) diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index 5e4c2313a..115ef09d6 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -50,7 +50,7 @@ "@nuxt/friendly-errors-webpack-plugin": "^2.5.0", "@types/jest": "^25.2.1", "@vant/eslint-config": "^2.2.2", - "@vant/markdown-loader": "^2.3.0", + "@vant/markdown-loader": "^3.0.0-alpha.0", "@vant/markdown-vetur": "^2.0.1", "@vant/stylelint-config": "^1.3.0", "@vant/touch-emulator": "^1.2.0", diff --git a/packages/vant-cli/yarn.lock b/packages/vant-cli/yarn.lock index 8651cd6bd..61adc1459 100644 --- a/packages/vant-cli/yarn.lock +++ b/packages/vant-cli/yarn.lock @@ -1640,13 +1640,13 @@ eslint-plugin-import "^2.20.2" eslint-plugin-vue "^6.2.2" -"@vant/markdown-loader@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@vant/markdown-loader/-/markdown-loader-2.3.0.tgz#ea8ab4d8d41609839b40b817bc3a598cf13f9920" - integrity sha512-efNAnJMQbX3yP0+/zvnlYda+xIATLl+T9BXOB179M8KkS3hKk0b8tYHYVeLmdCLbJFeVd8bVXICILIplOYQJ5A== +"@vant/markdown-loader@^3.0.0-alpha.0": + version "3.0.0-alpha.0" + resolved "https://registry.npmjs.org/@vant/markdown-loader/-/markdown-loader-3.0.0-alpha.0.tgz#a14fa5c6bf4ffd57916855210dffc0daf8d9d6cb" + integrity sha512-cDDXfYhyS6yfVtqx+hwgN4blqd/+V1mYsvtDKsrpAZnirFhWfVFWeNZEjXPN6JYfXk3rEprEepjY/FPtCJG2EQ== dependencies: front-matter "^3.0.2" - highlight.js "^9.16.2" + highlight.js "^9.17.1" loader-utils "^1.2.3" markdown-it "^10.0.0" markdown-it-anchor "^5.2.5" @@ -5497,9 +5497,9 @@ he@^1.2.0: resolved "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha1-hK5l+n6vsWX922FWauFLrwVmTw8= -highlight.js@^9.16.2: +highlight.js@^9.17.1: version "9.18.1" - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" + resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg== hmac-drbg@^1.0.0: diff --git a/packages/vant-markdown-loader/package.json b/packages/vant-markdown-loader/package.json index ac97807a5..606bce339 100644 --- a/packages/vant-markdown-loader/package.json +++ b/packages/vant-markdown-loader/package.json @@ -1,6 +1,6 @@ { "name": "@vant/markdown-loader", - "version": "2.3.0", + "version": "3.0.0-alpha.0", "description": "Simple and fast vue markdown loader", "main": "src/index.js", "publishConfig": { diff --git a/packages/vant-markdown-loader/src/index.js b/packages/vant-markdown-loader/src/index.js index d04430519..301ba7ead 100644 --- a/packages/vant-markdown-loader/src/index.js +++ b/packages/vant-markdown-loader/src/index.js @@ -12,16 +12,11 @@ function wrapper(content) { content = escape(content); return ` - +import { h } from 'vue'; + +const content = unescape(\`${content}\`); - `; } @@ -53,7 +51,7 @@ const parser = new MarkdownIt({ slugify, }); -module.exports = function(source) { +module.exports = function (source) { let options = loaderUtils.getOptions(this) || {}; this.cacheable && this.cacheable(); From bd0853b60e66540163604a302ab4d7d44bf1b6a4 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 14:56:11 +0800 Subject: [PATCH 007/626] chore: temporarily comment some code --- docs/site/mobile.js | 230 +++++++++--------- packages/vant-cli/src/compiler/compile-sfc.ts | 8 +- packages/vant-cli/src/config/jest.setup.ts | 6 +- packages/vant-cli/src/config/webpack.base.ts | 42 ++-- 4 files changed, 142 insertions(+), 144 deletions(-) diff --git a/docs/site/mobile.js b/docs/site/mobile.js index a27993dd5..8757dcc0e 100644 --- a/docs/site/mobile.js +++ b/docs/site/mobile.js @@ -1,130 +1,130 @@ -import Vue from 'vue'; -import Locale from '../../src/locale'; -import Lazyload from '../../src/lazyload'; -import { get } from '../../src/utils'; -import { camelize } from '../../src/utils/format/string'; -import enUS from '../../src/locale/lang/en-US'; +// import Vue from 'vue'; +// import Locale from '../../src/locale'; +// import Lazyload from '../../src/lazyload'; +// import { get } from '../../src/utils'; +// import { camelize } from '../../src/utils/format/string'; +// import enUS from '../../src/locale/lang/en-US'; -Vue.use(Lazyload, { - lazyComponent: true, -}); +// Vue.use(Lazyload, { +// lazyComponent: true, +// }); -Locale.add({ - 'en-US': enUS, -}); +// Locale.add({ +// 'en-US': enUS, +// }); -// flag for vant-weapp demos -const isWeapp = location.search.indexOf('weapp=1') !== -1; +// // flag for vant-weapp demos +// const isWeapp = location.search.indexOf('weapp=1') !== -1; -let demoUid = 0; +// let demoUid = 0; -// helper for demo locales -Vue.mixin({ - computed: { - t() { - const { name } = this.$options; - const { lang = 'zh-CN' } = (this.$route && this.$route.meta) || {}; - const prefix = name ? camelize(name) + '.' : ''; - const messages = this.$vantMessages[lang]; +// // helper for demo locales +// Vue.mixin({ +// computed: { +// t() { +// const { name } = this.$options; +// const { lang = 'zh-CN' } = (this.$route && this.$route.meta) || {}; +// const prefix = name ? camelize(name) + '.' : ''; +// const messages = this.$vantMessages[lang]; - return (path, ...args) => { - const message = get(messages, prefix + path) || get(messages, path); - return typeof message === 'function' ? message(...args) : message; - }; - }, +// return (path, ...args) => { +// const message = get(messages, prefix + path) || get(messages, path); +// return typeof message === 'function' ? message(...args) : message; +// }; +// }, - isWeapp() { - return isWeapp; - }, - }, +// isWeapp() { +// return isWeapp; +// }, +// }, - beforeCreate() { - if (!this.$options.name) { - this.$options.name = `demo-${demoUid++}`; - } +// beforeCreate() { +// if (!this.$options.name) { +// this.$options.name = `demo-${demoUid++}`; +// } - const { i18n, name } = this.$options; +// const { i18n, name } = this.$options; - if (i18n && name) { - const locales = {}; - const camelizedName = camelize(name); +// if (i18n && name) { +// const locales = {}; +// const camelizedName = camelize(name); - Object.keys(i18n).forEach((key) => { - locales[key] = { [camelizedName]: i18n[key] }; - }); +// Object.keys(i18n).forEach((key) => { +// locales[key] = { [camelizedName]: i18n[key] }; +// }); - Locale.add(locales); - } - }, -}); +// Locale.add(locales); +// } +// }, +// }); -// switch lang after routing -if (window.vueRouter) { - window.vueRouter.afterEach((to) => { - const { lang } = to.meta || {}; +// // switch lang after routing +// if (window.vueRouter) { +// window.vueRouter.afterEach((to) => { +// const { lang } = to.meta || {}; - if (lang) { - Locale.use(lang); - } - }); -} +// if (lang) { +// Locale.use(lang); +// } +// }); +// } -// add some basic locale messages -Locale.add({ - 'zh-CN': { - add: '增加', - decrease: '减少', - red: '红色', - orange: '橙色', - yellow: '黄色', - purple: '紫色', - tab: '标签', - tag: '标签', - desc: '描述信息', - back: '返回', - title: '标题', - status: '状态', - button: '按钮', - option: '选项', - search: '搜索', - content: '内容', - custom: '自定义', - username: '用户名', - password: '密码', - disabled: '禁用状态', - uneditable: '不可编辑', - basicUsage: '基础用法', - advancedUsage: '高级用法', - loadingStatus: '加载状态', - usernamePlaceholder: '请输入用户名', - passwordPlaceholder: '请输入密码', - }, - 'en-US': { - add: 'Add', - decrease: 'Decrease', - red: 'Red', - orange: 'Orange', - yellow: 'Yellow', - purple: 'Purple', - tab: 'Tab', - tag: 'Tag', - desc: 'Description', - back: 'Back', - title: 'Title', - status: 'Status', - button: 'Button', - option: 'Option', - search: 'Search', - content: 'Content', - custom: 'Custom', - username: 'Username', - password: 'Password', - loadingStatus: 'Loading', - disabled: 'Disabled', - uneditable: 'Uneditable', - basicUsage: 'Basic Usage', - advancedUsage: 'Advanced Usage', - usernamePlaceholder: 'Username', - passwordPlaceholder: 'Password', - }, -}); +// // add some basic locale messages +// Locale.add({ +// 'zh-CN': { +// add: '增加', +// decrease: '减少', +// red: '红色', +// orange: '橙色', +// yellow: '黄色', +// purple: '紫色', +// tab: '标签', +// tag: '标签', +// desc: '描述信息', +// back: '返回', +// title: '标题', +// status: '状态', +// button: '按钮', +// option: '选项', +// search: '搜索', +// content: '内容', +// custom: '自定义', +// username: '用户名', +// password: '密码', +// disabled: '禁用状态', +// uneditable: '不可编辑', +// basicUsage: '基础用法', +// advancedUsage: '高级用法', +// loadingStatus: '加载状态', +// usernamePlaceholder: '请输入用户名', +// passwordPlaceholder: '请输入密码', +// }, +// 'en-US': { +// add: 'Add', +// decrease: 'Decrease', +// red: 'Red', +// orange: 'Orange', +// yellow: 'Yellow', +// purple: 'Purple', +// tab: 'Tab', +// tag: 'Tag', +// desc: 'Description', +// back: 'Back', +// title: 'Title', +// status: 'Status', +// button: 'Button', +// option: 'Option', +// search: 'Search', +// content: 'Content', +// custom: 'Custom', +// username: 'Username', +// password: 'Password', +// loadingStatus: 'Loading', +// disabled: 'Disabled', +// uneditable: 'Uneditable', +// basicUsage: 'Basic Usage', +// advancedUsage: 'Advanced Usage', +// usernamePlaceholder: 'Username', +// passwordPlaceholder: 'Password', +// }, +// }); diff --git a/packages/vant-cli/src/compiler/compile-sfc.ts b/packages/vant-cli/src/compiler/compile-sfc.ts index 0a162e3c9..0bee1615a 100644 --- a/packages/vant-cli/src/compiler/compile-sfc.ts +++ b/packages/vant-cli/src/compiler/compile-sfc.ts @@ -1,4 +1,4 @@ -import * as compiler from 'vue-template-compiler'; +import * as compiler from '@vue/compiler-sfc'; import * as compileUtils from '@vue/component-compiler-utils'; import hash from 'hash-sum'; import { parse } from 'path'; @@ -87,7 +87,7 @@ export async function compileSfc(filePath: string): Promise { const descriptor = parseSfc(filePath); const { template, styles } = descriptor; - const hasScoped = styles.some(s => s.scoped); + const hasScoped = styles.some((s) => s.scoped); const scopeId = hasScoped ? `data-v-${hash(source)}` : ''; // compile js part @@ -107,9 +107,7 @@ export async function compileSfc(filePath: string): Promise { } writeFileSync(jsFilePath, script); - compileJs(jsFilePath) - .then(resolve) - .catch(reject); + compileJs(jsFilePath).then(resolve).catch(reject); }) ); } diff --git a/packages/vant-cli/src/config/jest.setup.ts b/packages/vant-cli/src/config/jest.setup.ts index 28e007f28..fe45ee917 100644 --- a/packages/vant-cli/src/config/jest.setup.ts +++ b/packages/vant-cli/src/config/jest.setup.ts @@ -1,6 +1,6 @@ -import Vue from 'vue'; +// import Vue from 'vue'; import 'jest-canvas-mock'; // @ts-ignore -import Package from '../../dist/package-entry'; +// import Package from '../../dist/package-entry'; -Vue.use(Package); +// Vue.use(Package); diff --git a/packages/vant-cli/src/config/webpack.base.ts b/packages/vant-cli/src/config/webpack.base.ts index 461869b01..59b53b7b4 100644 --- a/packages/vant-cli/src/config/webpack.base.ts +++ b/packages/vant-cli/src/config/webpack.base.ts @@ -40,26 +40,26 @@ const plugins = [ }), ]; -const tsconfigPath = join(CWD, 'tsconfig.json'); -if (existsSync(tsconfigPath)) { - const ForkTsCheckerPlugin = require('fork-ts-checker-webpack-plugin'); - plugins.push( - new ForkTsCheckerPlugin({ - formatter: 'codeframe', - vue: { enabled: true }, - logger: { - // skip info message - info() {}, - warn(message: string) { - consola.warn(message); - }, - error(message: string) { - consola.error(message); - }, - }, - }) - ); -} +// const tsconfigPath = join(CWD, 'tsconfig.json'); +// if (existsSync(tsconfigPath)) { +// const ForkTsCheckerPlugin = require('fork-ts-checker-webpack-plugin'); +// plugins.push( +// new ForkTsCheckerPlugin({ +// formatter: 'codeframe', +// vue: { enabled: true }, +// logger: { +// // skip info message +// info() {}, +// warn(message: string) { +// consola.warn(message); +// }, +// error(message: string) { +// consola.error(message); +// }, +// }, +// }) +// ); +// } export const baseConfig = { mode: 'development', @@ -112,7 +112,7 @@ export const baseConfig = { }, { test: /\.md$/, - use: [CACHE_LOADER, 'vue-loader', '@vant/markdown-loader'], + use: [CACHE_LOADER, '@vant/markdown-loader'], }, ], }, From 8940ba10781ddf5c61e9d0a3e1f9e04714b4a3e5 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 14:56:36 +0800 Subject: [PATCH 008/626] chore: release @vant/cli@3.0.0-alpha.0 --- packages/vant-cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index 115ef09d6..0c7a7053f 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -1,6 +1,6 @@ { "name": "@vant/cli", - "version": "2.5.1", + "version": "3.0.0-alpha.0", "description": "", "main": "lib/index.js", "typings": "lib/index.d.ts", From 248c3f08ed0fc844ee0df3fbbb16c31e8483bcab Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 15:11:04 +0800 Subject: [PATCH 009/626] chore: add new src dir --- package.json | 2 +- packages/vant-cli/package.json | 4 +- vant.config.js | 1 + yarn.lock | 99 +++++++++++++++++++--------------- 4 files changed, 61 insertions(+), 45 deletions(-) diff --git a/package.json b/package.json index 9bac07003..f89ae0215 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ }, "devDependencies": { "@ls-lint/ls-lint": "^1.8.0", - "@vant/cli": "^2.5.1", + "@vant/cli": "^3.0.0-alpha.0", "@vue/compiler-sfc": "^3.0.0-beta.14", "prettier": "^2.0.4", "vue": "^3.0.0-beta.14" diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index 0c7a7053f..b35cbfc71 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -29,8 +29,8 @@ "author": "chenjiahan", "license": "MIT", "peerDependencies": { - "vue": "^2.5.22", - "vue-template-compiler": "^2.5.22" + "vue": "3.x", + "@vue/compiler-sfc": "3.x" }, "devDependencies": { "@types/fs-extra": "^8.1.0", diff --git a/vant.config.js b/vant.config.js index 73d8f62d7..743271631 100644 --- a/vant.config.js +++ b/vant.config.js @@ -1,6 +1,7 @@ module.exports = { name: 'vant', build: { + srcDir: 'src-v3', skipInstall: ['lazyload'], site: { publicPath: 'https://b.yzcdn.cn/vant/', diff --git a/yarn.lock b/yarn.lock index 093b18c42..9129b3b67 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1358,6 +1358,13 @@ dependencies: "@types/node" "*" +"@types/mini-css-extract-plugin@^0.9.1": + version "0.9.1" + resolved "https://registry.npmjs.org/@types/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.1.tgz#d4bdde5197326fca039d418f4bdda03dc74dc451" + integrity sha512-+mN04Oszdz9tGjUP/c1ReVwJXxSniLd7lF++sv+8dkABxVNthg6uccei+4ssKxRHGoMmPxdn7uBdJWONSJGTGQ== + dependencies: + "@types/webpack" "*" + "@types/minimatch@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -1447,6 +1454,18 @@ "@types/source-list-map" "*" source-map "^0.6.1" +"@types/webpack@*": + version "4.41.13" + resolved "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.13.tgz#988d114c8913d039b8a0e0502a7fe4f1f84f3d5e" + integrity sha512-RYmIHOWSxnTTa765N6jJBVE45pd2SYNblEYshVDduLw6RhocazNmRzE5/ytvBD8IkDMH6DI+bcrqxh8NILimBA== + dependencies: + "@types/anymatch" "*" + "@types/node" "*" + "@types/tapable" "*" + "@types/uglify-js" "*" + "@types/webpack-sources" "*" + source-map "^0.6.0" + "@types/webpack@^4.41.8": version "4.41.10" resolved "https://registry.npm.taobao.org/@types/webpack/download/@types/webpack-4.41.10.tgz?cache=0&sync_timestamp=1585610818206&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fwebpack%2Fdownload%2F%40types%2Fwebpack-4.41.10.tgz#2e1f6b3508a249854efe3dcc7690905ac5ee10be" @@ -1514,10 +1533,10 @@ semver "^6.3.0" tsutils "^3.17.1" -"@vant/cli@^2.5.1": - version "2.5.1" - resolved "https://registry.npmjs.org/@vant/cli/-/cli-2.5.1.tgz#055bfbdc68227ac761730eab2a31f52cd93641d9" - integrity sha512-U0n719aqoIGKG9x0fo8Onk5QTLfrJErjU3vhQOA5cVMN3z9rOOLU7SoB4oSLLr3lh0wfMxhsie9hh6mAO/4NlQ== +"@vant/cli@^3.0.0-alpha.0": + version "3.0.0-alpha.0" + resolved "https://registry.npmjs.org/@vant/cli/-/cli-3.0.0-alpha.0.tgz#f25c8815b8d0b0360d1c2853ba411e10c072afe7" + integrity sha512-rCcYTWh9LYgw2suCjHc3McI77OEHFwdS+te3cNj9+NJV4PVbfsXfho/bHcndNDqEal0KBsOM0JjyfzB2v3z2mA== dependencies: "@babel/core" "^7.9.6" "@babel/plugin-syntax-jsx" "^7.8.3" @@ -1528,7 +1547,7 @@ "@nuxt/friendly-errors-webpack-plugin" "^2.5.0" "@types/jest" "^25.2.1" "@vant/eslint-config" "^2.2.2" - "@vant/markdown-loader" "^2.3.0" + "@vant/markdown-loader" "^3.0.0-alpha.0" "@vant/markdown-vetur" "^2.0.1" "@vant/stylelint-config" "^1.3.0" "@vant/touch-emulator" "^1.2.0" @@ -1540,6 +1559,7 @@ babel-jest "^25.5.1" babel-loader "^8.1.0" babel-plugin-import "^1.13.0" + babel-plugin-transform-jsx-vue3 "^0.1.8" cache-loader "^4.1.0" chokidar "^3.4.0" clean-css "^4.2.3" @@ -1575,8 +1595,8 @@ stylelint "^13.3.3" typescript "^3.8.3" vue-jest "4.0.0-beta.2" - vue-loader "^15.9.2" - vue-router "^3.1.6" + vue-loader "^16.0.0-beta.3" + vue-router "^4.0.0-alpha.12" webpack "^4.43.0" webpack-dev-server "3.10.3" webpack-merge "^4.2.2" @@ -1599,13 +1619,13 @@ resolved "https://registry.yarnpkg.com/@vant/icons/-/icons-1.2.1.tgz#309fecb97a4989866f045ce676b545c454701c8f" integrity sha512-5ivsKQR4ySbdBW5UPoQDVqO6rdc1um3rvq/0VL+ZSA7Y3MdBQ3E4/NL0hoAY5/sZZeYfIDKEP21gpjUzdeEDQQ== -"@vant/markdown-loader@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@vant/markdown-loader/-/markdown-loader-2.3.0.tgz#ea8ab4d8d41609839b40b817bc3a598cf13f9920" - integrity sha512-efNAnJMQbX3yP0+/zvnlYda+xIATLl+T9BXOB179M8KkS3hKk0b8tYHYVeLmdCLbJFeVd8bVXICILIplOYQJ5A== +"@vant/markdown-loader@^3.0.0-alpha.0": + version "3.0.0-alpha.0" + resolved "https://registry.npmjs.org/@vant/markdown-loader/-/markdown-loader-3.0.0-alpha.0.tgz#a14fa5c6bf4ffd57916855210dffc0daf8d9d6cb" + integrity sha512-cDDXfYhyS6yfVtqx+hwgN4blqd/+V1mYsvtDKsrpAZnirFhWfVFWeNZEjXPN6JYfXk3rEprEepjY/FPtCJG2EQ== dependencies: front-matter "^3.0.2" - highlight.js "^9.16.2" + highlight.js "^9.17.1" loader-utils "^1.2.3" markdown-it "^10.0.0" markdown-it-anchor "^5.2.5" @@ -1758,7 +1778,7 @@ source-map "~0.6.1" vue-template-es2015-compiler "^1.9.0" -"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.1.2": +"@vue/component-compiler-utils@^3.1.2": version "3.1.2" resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.1.2.tgz#8213a5ff3202f9f2137fe55370f9e8b9656081c3" integrity sha512-QLq9z8m79mCinpaEeSURhnNCN6djxpHw0lpP/bodMlt5kALfONpryMthvnrQOlTcIKoF+VoPi+lPHUYeDFPXug== @@ -2427,6 +2447,13 @@ babel-plugin-jest-hoist@^25.5.0: "@babel/types" "^7.3.3" "@types/babel__traverse" "^7.0.6" +babel-plugin-transform-jsx-vue3@^0.1.8: + version "0.1.9" + resolved "https://registry.npmjs.org/babel-plugin-transform-jsx-vue3/-/babel-plugin-transform-jsx-vue3-0.1.9.tgz#5951c96e68a3281eb25ff11bfd8160bad47bba9a" + integrity sha512-braK/4Wd6Vjpk4Z8+KooU8HEPBLdW3lNE+k0IZIKnsZ9kGIaeymC8K/I61N21gguw5np7pRKcpaxfTj00/W8kA== + dependencies: + esutils "^2.0.2" + babel-preset-current-node-syntax@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6" @@ -5594,9 +5621,9 @@ he@^1.2.0: resolved "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha1-hK5l+n6vsWX922FWauFLrwVmTw8= -highlight.js@^9.16.2: +highlight.js@^9.17.1: version "9.18.1" - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" + resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg== hmac-drbg@^1.0.0: @@ -7285,7 +7312,7 @@ loader-runner@^2.4.0: resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== -loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: +loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== @@ -11802,11 +11829,6 @@ vue-eslint-parser@^7.0.0: esquery "^1.0.1" lodash "^4.17.15" -vue-hot-reload-api@^2.3.0: - version "2.3.4" - resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" - integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== - vue-jest@4.0.0-beta.2: version "4.0.0-beta.2" resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-4.0.0-beta.2.tgz#f2120ea9d24224aad3a100c2010b0760d47ee6fe" @@ -11824,29 +11846,22 @@ vue-lazyload@1.2.3: resolved "https://registry.yarnpkg.com/vue-lazyload/-/vue-lazyload-1.2.3.tgz#901f9ec15c7e6ca78781a2bae4a343686bdedb2c" integrity sha512-DC0ZwxanbRhx79tlA3zY5OYJkH8FYp3WBAnAJbrcuoS8eye1P73rcgAZhyxFSPUluJUTelMB+i/+VkNU/qVm7g== -vue-loader@^15.9.2: - version "15.9.2" - resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.9.2.tgz#ae01f5f4c9c6a04bff4483912e72ef91a402c1ae" - integrity sha512-oXBubaY//CYEISBlHX+c2YPJbmOH68xXPXjFv4MAgPqQvUsnjrBAjCJi8HXZ/r/yfn0tPL5VZj1Zcp8mJPI8VA== +vue-loader@^16.0.0-beta.3: + version "16.0.0-beta.3" + resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.3.tgz#2374094399fed98a8a5750912f3caaaefa814553" + integrity sha512-B1jRmai+/sr5PDkRqZe6KllBGMJb4+AsjA44yg1dAod8W+tIdvKTffVEl+5lcXSZy5NsjEx3KqpvV6qq8l/ggA== dependencies: - "@vue/component-compiler-utils" "^3.1.0" - hash-sum "^1.0.2" - loader-utils "^1.1.0" - vue-hot-reload-api "^2.3.0" - vue-style-loader "^4.1.0" + "@types/mini-css-extract-plugin" "^0.9.1" + chalk "^3.0.0" + hash-sum "^2.0.0" + loader-utils "^1.2.3" + merge-source-map "^1.1.0" + source-map "^0.6.1" -vue-router@^3.1.6: - version "3.1.6" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.1.6.tgz#45f5a3a3843e31702c061dd829393554e4328f89" - integrity sha512-GYhn2ynaZlysZMkFE5oCHRUTqE8BWs/a9YbKpNLi0i7xD6KG1EzDqpHQmv1F5gXjr8kL5iIVS8EOtRaVUEXTqA== - -vue-style-loader@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-4.1.2.tgz#dedf349806f25ceb4e64f3ad7c0a44fba735fcf8" - integrity sha512-0ip8ge6Gzz/Bk0iHovU9XAUQaFt/G2B61bnWa2tCcqqdgfHs1lF9xXorFbE55Gmy92okFT+8bfmySuUOu13vxQ== - dependencies: - hash-sum "^1.0.2" - loader-utils "^1.0.2" +vue-router@^4.0.0-alpha.12: + version "4.0.0-alpha.12" + resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-alpha.12.tgz#cba18f0a7fcb577d97c8cd10072a9927313db510" + integrity sha512-TJhbWHPZS1v259PKlZf+ljSob0U2RUii3HXQgrcFXsNmeWuqEYEh6trswHHr4+MQdXxHgonyYK28qhBjNhORkA== vue-template-es2015-compiler@^1.9.0: version "1.9.1" From 4e793189b6593721a203767511e6ec39b1d3eca8 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 15:18:52 +0800 Subject: [PATCH 010/626] fix(cli): register packageEntry failed --- packages/vant-cli/site/desktop/main.js | 2 +- packages/vant-cli/site/mobile/main.js | 13 ++++++++----- .../src/compiler/gen-site-mobile-shared.ts | 19 +++++++++---------- 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/packages/vant-cli/site/desktop/main.js b/packages/vant-cli/site/desktop/main.js index 0b0619760..0e6974d07 100644 --- a/packages/vant-cli/site/desktop/main.js +++ b/packages/vant-cli/site/desktop/main.js @@ -2,4 +2,4 @@ import { createApp } from 'vue'; import App from './App'; import { router } from './router'; -createApp(App).use(router).mount('#app'); +window.app = createApp(App).use(router).mount('#app'); diff --git a/packages/vant-cli/site/mobile/main.js b/packages/vant-cli/site/mobile/main.js index 63da68116..59278dfbf 100644 --- a/packages/vant-cli/site/mobile/main.js +++ b/packages/vant-cli/site/mobile/main.js @@ -2,13 +2,16 @@ import { createApp } from 'vue'; import DemoBlock from './components/DemoBlock'; import DemoSection from './components/DemoSection'; import { router } from './router'; +import { packageEntry } from 'site-mobile-shared'; import App from './App'; import '@vant/touch-emulator'; +window.app = createApp(App) + .use(router) + .use(packageEntry) + .component(DemoBlock.name, DemoBlock) + .component(DemoSection.name, DemoSection); + setTimeout(() => { - createApp(App) - .use(router) - .component(DemoBlock.name, DemoBlock) - .component(DemoSection.name, DemoSection) - .mount('#app'); + window.app.mount('#app'); }, 0); diff --git a/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts b/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts index 2edddef05..f6ed5d483 100644 --- a/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts +++ b/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts @@ -17,8 +17,7 @@ type DemoItem = { }; function genInstall() { - return `import Vue from 'vue'; -import PackageEntry from './package-entry'; + return `import packageEntry from './package-entry'; import './package-style'; `; } @@ -26,7 +25,7 @@ import './package-style'; function genImports(demos: DemoItem[]) { return demos .map( - item => + (item) => `import ${item.name} from '${removeExt(normalizePath(item.path))}';` ) .join('\n'); @@ -34,22 +33,22 @@ function genImports(demos: DemoItem[]) { function genExports(demos: DemoItem[]) { return `export const demos = {\n ${demos - .map(item => item.name) + .map((item) => item.name) .join(',\n ')}\n};`; } function getSetName(demos: DemoItem[]) { return demos - .map(item => `${item.name}.name = 'demo-${item.component}';`) + .map((item) => `${item.name}.name = 'demo-${item.component}';`) .join('\n'); } function genConfig(demos: DemoItem[]) { const vantConfig = getVantConfig(); - const demoNames = demos.map(item => decamelize(item.name)); + const demoNames = demos.map((item) => decamelize(item.name)); function demoFilter(nav: any[]) { - return nav.filter(group => { + return nav.filter((group) => { group.items = group.items.filter((item: any) => demoNames.includes(item.path) ); @@ -73,17 +72,17 @@ function genConfig(demos: DemoItem[]) { function genCode(components: string[]) { const demos = components - .map(component => ({ + .map((component) => ({ component, name: pascalize(component), path: join(SRC_DIR, component, 'demo/index.vue'), })) - .filter(item => existsSync(item.path)); + .filter((item) => existsSync(item.path)); return `${genInstall()} ${genImports(demos)} -Vue.use(PackageEntry); +export { packageEntry }; ${getSetName(demos)} From 075bc05a75f01a66772c4281ff8893f40a9835a8 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Thu, 28 May 2020 15:26:12 +0800 Subject: [PATCH 011/626] fix: non-empty path must start with "/" --- packages/vant-cli/site/desktop/router.js | 4 ++-- packages/vant-cli/site/mobile/router.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/vant-cli/site/desktop/router.js b/packages/vant-cli/site/desktop/router.js index eea47a9f7..716451922 100644 --- a/packages/vant-cli/site/desktop/router.js +++ b/packages/vant-cli/site/desktop/router.js @@ -47,12 +47,12 @@ function getRoutes() { if (locales) { routes.push({ - path: '*', + path: '/*', redirect: (route) => `/${getLangFromRoute(route)}/`, }); } else { routes.push({ - path: '*', + path: '/*', redirect: '/', }); } diff --git a/packages/vant-cli/site/mobile/router.js b/packages/vant-cli/site/mobile/router.js index ec3e37698..0fadfb4b0 100644 --- a/packages/vant-cli/site/mobile/router.js +++ b/packages/vant-cli/site/mobile/router.js @@ -28,7 +28,7 @@ function getRoutes() { if (langs.length) { routes.push({ - path: '*', + path: '/*', redirect: (route) => `/${getLangFromRoute(route)}/`, }); From f6280dc41d325f6188a8d05bd908cce15e1a5473 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 4 Jul 2020 21:14:14 +0800 Subject: [PATCH 012/626] build(cli): update jsx plugin --- packages/vant-cli/package.json | 11 +- packages/vant-cli/src/config/babel.config.ts | 7 +- packages/vant-cli/yarn.lock | 160 +++++++------------ 3 files changed, 60 insertions(+), 118 deletions(-) diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index e60060ad3..af6b8e18d 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -29,8 +29,8 @@ "author": "chenjiahan", "license": "MIT", "peerDependencies": { - "vue": "3.x", - "@vue/compiler-sfc": "3.x" + "@vue/compiler-sfc": "3.x", + "vue": "3.x" }, "devDependencies": { "@types/fs-extra": "^9.0.1", @@ -39,6 +39,7 @@ "@types/webpack-merge": "^4.1.5" }, "dependencies": { + "@ant-design-vue/babel-plugin-jsx": "^1.0.0-alpha.6", "@babel/core": "^7.10.1", "@babel/plugin-syntax-jsx": "^7.10.1", "@babel/plugin-transform-object-assign": "^7.10.1", @@ -54,7 +55,6 @@ "@vant/markdown-vetur": "^2.0.1", "@vant/stylelint-config": "^1.3.0", "@vant/touch-emulator": "^1.2.0", - "@vue/babel-preset-jsx": "^1.1.2", "@vue/component-compiler-utils": "^3.1.2", "@vue/test-utils": "1.0.0-beta.29", "address": "^1.1.2", @@ -62,7 +62,6 @@ "babel-jest": "^26.0.1", "babel-loader": "^8.1.0", "babel-plugin-import": "^1.13.0", - "babel-plugin-transform-jsx-vue3": "^0.1.8", "cache-loader": "^4.1.0", "chokidar": "^3.4.0", "clean-css": "^4.2.3", @@ -98,8 +97,8 @@ "stylelint": "^13.5.0", "typescript": "^3.9.3", "vue-jest": "4.0.0-beta.2", - "vue-loader": "^16.0.0-beta.3", - "vue-router": "^4.0.0-alpha.12", + "vue-loader": "^16.0.0-beta.4", + "vue-router": "^4.0.0-beta.1", "webpack": "^4.43.0", "webpack-dev-server": "3.11.0", "webpack-merge": "^4.2.2", diff --git a/packages/vant-cli/src/config/babel.config.ts b/packages/vant-cli/src/config/babel.config.ts index c7acb2434..d8750115f 100644 --- a/packages/vant-cli/src/config/babel.config.ts +++ b/packages/vant-cli/src/config/babel.config.ts @@ -18,12 +18,6 @@ module.exports = function(api?: ConfigAPI) { modules: useESModules ? false : 'commonjs', }, ], - [ - '@vue/babel-preset-jsx', - { - functional: false, - }, - ], '@babel/preset-typescript', ], plugins: [ @@ -43,6 +37,7 @@ module.exports = function(api?: ConfigAPI) { }, 'vant', ], + '@ant-design-vue/babel-plugin-jsx', '@babel/plugin-transform-object-assign', ], }; diff --git a/packages/vant-cli/yarn.lock b/packages/vant-cli/yarn.lock index d26a87101..37fd41b64 100644 --- a/packages/vant-cli/yarn.lock +++ b/packages/vant-cli/yarn.lock @@ -2,6 +2,31 @@ # yarn lockfile v1 +"@ant-design-vue/babel-helper-vue-compatible-props@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@ant-design-vue/babel-helper-vue-compatible-props/-/babel-helper-vue-compatible-props-1.0.0.tgz#1cf8a267e04e7de4bd9207eb457bb40fbe96d69a" + integrity sha512-BHOaxm9EJOqoBYWUMVFKwjgDkdqbGnY1KhQBJwTdrQGRDVjVXkxzyoDGJV52YAGgHQrdaSMWakwZIiTfncsNJQ== + dependencies: + "@ant-design-vue/babel-helper-vue-transform-on" "^1.0.1" + +"@ant-design-vue/babel-helper-vue-transform-on@^1.0.0", "@ant-design-vue/babel-helper-vue-transform-on@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@ant-design-vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.1.tgz#d219d92f4e1fc5e7add211c347c7fa000518b623" + integrity sha512-dOAPf/tCM2lCG8FhvOMFBaOdMElMEGhOoocMXEWvHW2l1KIex+UibDcq4bdBEJpDMLrnbNOqci9E7P2dARP6lg== + +"@ant-design-vue/babel-plugin-jsx@^1.0.0-alpha.6": + version "1.0.0-alpha.6" + resolved "https://registry.npmjs.org/@ant-design-vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0-alpha.6.tgz#bbb844b91c0032922f80e3d1f062177444077dae" + integrity sha512-f95WdmKQkDGfSHHbqQ3xD5B/PPdg/DhHYlZE3UbIAN08e0YcjM+V1QlFAJYDfcefvsmLA/fGu/bIosBPZDZFWg== + dependencies: + "@ant-design-vue/babel-helper-vue-compatible-props" "^1.0.0" + "@ant-design-vue/babel-helper-vue-transform-on" "^1.0.0" + "@babel/helper-module-imports" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + camelcase "^6.0.0" + html-tags "^3.1.0" + svg-tags "^1.0.0" + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" @@ -286,6 +311,11 @@ resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.10.1.tgz?cache=0&sync_timestamp=1590617710577&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.10.1.tgz#ec5a5cf0eec925b66c60580328b122c01230a127" integrity sha1-7Fpc8O7JJbZsYFgDKLEiwBIwoSc= +"@babel/helper-plugin-utils@^7.10.4": + version "7.10.4" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" + integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== + "@babel/helper-regex@^7.10.1": version "7.10.1" resolved "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.10.1.tgz?cache=0&sync_timestamp=1590617707108&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-regex%2Fdownload%2F%40babel%2Fhelper-regex-7.10.1.tgz#021cf1a7ba99822f993222a001cc3fec83255b96" @@ -567,6 +597,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" +"@babel/plugin-syntax-jsx@^7.0.0": + version "7.10.4" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" + integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-jsx@^7.10.1": version "7.10.1" resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.10.1.tgz?cache=0&sync_timestamp=1590617717696&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.10.1.tgz#0ae371134a42b91d5418feb3c8c8d43e1565d2da" @@ -574,13 +611,6 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.1" -"@babel/plugin-syntax-jsx@^7.2.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" - integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.8.3" resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.8.3.tgz#3995d7d7ffff432f6ddc742b47e730c054599897" @@ -1741,6 +1771,13 @@ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.1.tgz#dc488842312a7f075149312905b5e3c0b054c79d" integrity sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw== +"@types/mini-css-extract-plugin@^0.9.1": + version "0.9.1" + resolved "https://registry.npmjs.org/@types/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.1.tgz#d4bdde5197326fca039d418f4bdda03dc74dc451" + integrity sha512-+mN04Oszdz9tGjUP/c1ReVwJXxSniLd7lF++sv+8dkABxVNthg6uccei+4ssKxRHGoMmPxdn7uBdJWONSJGTGQ== + dependencies: + "@types/webpack" "*" + "@types/minimatch@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -1995,70 +2032,6 @@ resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8" integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ== -"@vue/babel-helper-vue-jsx-merge-props@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040" - integrity sha512-6tyf5Cqm4m6v7buITuwS+jHzPlIPxbFzEhXR5JGZpbrvOcp1hiQKckd305/3C7C36wFekNTQSxAtgeM0j0yoUw== - -"@vue/babel-plugin-transform-vue-jsx@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.1.2.tgz#c0a3e6efc022e75e4247b448a8fc6b86f03e91c0" - integrity sha512-YfdaoSMvD1nj7+DsrwfTvTnhDXI7bsuh+Y5qWwvQXlD24uLgnsoww3qbiZvWf/EoviZMrvqkqN4CBw0W3BWUTQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" - "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" - html-tags "^2.0.0" - lodash.kebabcase "^4.1.1" - svg-tags "^1.0.0" - -"@vue/babel-preset-jsx@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.1.2.tgz#2e169eb4c204ea37ca66c2ea85a880bfc99d4f20" - integrity sha512-zDpVnFpeC9YXmvGIDSsKNdL7qCG2rA3gjywLYHPCKDT10erjxF4U+6ay9X6TW5fl4GsDlJp9bVfAVQAAVzxxvQ== - dependencies: - "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" - "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" - "@vue/babel-sugar-functional-vue" "^1.1.2" - "@vue/babel-sugar-inject-h" "^1.1.2" - "@vue/babel-sugar-v-model" "^1.1.2" - "@vue/babel-sugar-v-on" "^1.1.2" - -"@vue/babel-sugar-functional-vue@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.1.2.tgz#f7e24fba09e6f1ee70104560a8808057555f1a9a" - integrity sha512-YhmdJQSVEFF5ETJXzrMpj0nkCXEa39TvVxJTuVjzvP2rgKhdMmQzlJuMv/HpadhZaRVMCCF3AEjjJcK5q/cYzQ== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@vue/babel-sugar-inject-h@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.1.2.tgz#8a5276b6d8e2ed16ffc8078aad94236274e6edf0" - integrity sha512-VRSENdTvD5htpnVp7i7DNuChR5rVMcORdXjvv5HVvpdKHzDZAYiLSD+GhnhxLm3/dMuk8pSzV+k28ECkiN5m8w== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@vue/babel-sugar-v-model@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.1.2.tgz#1ff6fd1b800223fc9cb1e84dceb5e52d737a8192" - integrity sha512-vLXPvNq8vDtt0u9LqFdpGM9W9IWDmCmCyJXuozlq4F4UYVleXJ2Fa+3JsnTZNJcG+pLjjfnEGHci2339Kj5sGg== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" - "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" - camelcase "^5.0.0" - html-tags "^2.0.0" - svg-tags "^1.0.0" - -"@vue/babel-sugar-v-on@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.1.2.tgz#b2ef99b8f2fab09fbead25aad70ef42e1cf5b13b" - integrity sha512-T8ZCwC8Jp2uRtcZ88YwZtZXe7eQrJcfRq0uTFy6ShbwYJyz5qWskRFoVsdTi9o0WEhmQXxhQUewodOSCUPVmsQ== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" - camelcase "^5.0.0" - "@vue/component-compiler-utils@^2.4.0": version "2.6.0" resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-2.6.0.tgz#aa46d2a6f7647440b0b8932434d22f12371e543b" @@ -2074,7 +2047,7 @@ source-map "~0.6.1" vue-template-es2015-compiler "^1.9.0" -"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.1.2": +"@vue/component-compiler-utils@^3.1.2": version "3.1.2" resolved "https://registry.npm.taobao.org/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.1.2.tgz#8213a5ff3202f9f2137fe55370f9e8b9656081c3" integrity sha1-ghOl/zIC+fITf+VTcPnouWVggcM= @@ -2750,13 +2723,6 @@ babel-plugin-jest-hoist@^26.0.0: "@babel/types" "^7.3.3" "@types/babel__traverse" "^7.0.6" -babel-plugin-transform-jsx-vue3@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-jsx-vue3/-/babel-plugin-transform-jsx-vue3-0.1.8.tgz#9cef48337cb407a4a503fec84175a9119710f984" - integrity sha512-nCM0utOBCQKaCQA/q1gVv/dVIar5wPicOeJ2WaJRy3lL4yB00Tyo85VeKtNvJ+nYKxPslZDUE40GJehLdsdMkg== - dependencies: - esutils "^2.0.2" - babel-preset-current-node-syntax@^0.1.2: version "0.1.2" resolved "https://registry.npm.taobao.org/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6" @@ -7622,7 +7588,7 @@ loader-runner@^2.4.0: resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== -loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: +loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== @@ -7678,11 +7644,6 @@ lodash.ismatch@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= -lodash.kebabcase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" - integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= - lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -12032,11 +11993,6 @@ vue-eslint-parser@^7.0.0: esquery "^1.0.1" lodash "^4.17.15" -vue-hot-reload-api@^2.3.0: - version "2.3.4" - resolved "https://registry.npm.taobao.org/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" - integrity sha1-UylVzB6yCKPZkLOp+acFdGV+CPI= - vue-jest@4.0.0-beta.2: version "4.0.0-beta.2" resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-4.0.0-beta.2.tgz#f2120ea9d24224aad3a100c2010b0760d47ee6fe" @@ -12049,10 +12005,10 @@ vue-jest@4.0.0-beta.2: source-map "^0.5.6" ts-jest "^23.10.5" -vue-loader@^16.0.0-beta.3: - version "16.0.0-beta.3" - resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.3.tgz#2374094399fed98a8a5750912f3caaaefa814553" - integrity sha512-B1jRmai+/sr5PDkRqZe6KllBGMJb4+AsjA44yg1dAod8W+tIdvKTffVEl+5lcXSZy5NsjEx3KqpvV6qq8l/ggA== +vue-loader@^16.0.0-beta.4: + version "16.0.0-beta.4" + resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.4.tgz#1d9d7894f430992096727c4414bcf3b1ae8c1be9" + integrity sha512-uh/+SIwoN+hny0+GqxdkTuEmt1NV4wb8etF5cKkB1YVMv29ck0byrmkt8IIYadQ3r/fiYsr2brGJqP+hytQwuw== dependencies: "@types/mini-css-extract-plugin" "^0.9.1" chalk "^3.0.0" @@ -12061,18 +12017,10 @@ vue-loader@^16.0.0-beta.3: merge-source-map "^1.1.0" source-map "^0.6.1" -vue-router@^4.0.0-alpha.12: - version "4.0.0-alpha.12" - resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-alpha.12.tgz#cba18f0a7fcb577d97c8cd10072a9927313db510" - integrity sha512-TJhbWHPZS1v259PKlZf+ljSob0U2RUii3HXQgrcFXsNmeWuqEYEh6trswHHr4+MQdXxHgonyYK28qhBjNhORkA== - -vue-style-loader@^4.1.0: - version "4.1.2" - resolved "https://registry.npm.taobao.org/vue-style-loader/download/vue-style-loader-4.1.2.tgz#dedf349806f25ceb4e64f3ad7c0a44fba735fcf8" - integrity sha1-3t80mAbyXOtOZPOtfApE+6c1/Pg= - dependencies: - hash-sum "^1.0.2" - loader-utils "^1.0.2" +vue-router@^4.0.0-beta.1: + version "4.0.0-beta.1" + resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-beta.1.tgz#8ccdc37c991efa30d1519f885dd772307715503a" + integrity sha512-byqdBiKISN9Qrse6A0fgR6tePQNwlAdx+wBgO2x08MEn6hy8ds19uKvosfruVjw5vhpFmjvGR15Z68an+7fRAQ== vue-template-es2015-compiler@^1.9.0: version "1.9.1" From 29e37dc0f1d70d5f9143cfbc8c2d243890318e48 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 4 Jul 2020 21:14:53 +0800 Subject: [PATCH 013/626] chore: release @vant/cli@3.0.0-alpha.1 --- packages/vant-cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index af6b8e18d..ab1f8256c 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -1,6 +1,6 @@ { "name": "@vant/cli", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "", "main": "lib/index.js", "typings": "lib/index.d.ts", From 34c594fd79d1197545517a37b1fdef28a2ec806f Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 4 Jul 2020 21:19:27 +0800 Subject: [PATCH 014/626] chore: bump vue 3.0.0-beta.18 --- package.json | 7 +- yarn.lock | 438 ++++++++++++++++----------------------------------- 2 files changed, 138 insertions(+), 307 deletions(-) diff --git a/package.json b/package.json index 9d3fa85ae..5495a37bc 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,6 @@ "dependencies": { "@babel/runtime": "7.x", "@vant/icons": "1.2.3", - "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0", "vue-lazyload": "1.2.3" }, "peerDependencies": { @@ -56,10 +55,10 @@ }, "devDependencies": { "@ls-lint/ls-lint": "^1.8.0", - "@vant/cli": "^3.0.0-alpha.0", - "@vue/compiler-sfc": "^3.0.0-beta.14", + "@vant/cli": "^3.0.0-alpha.1", + "@vue/compiler-sfc": "^3.0.0-beta.18", "prettier": "^2.0.4", - "vue": "^3.0.0-beta.14" + "vue": "^3.0.0-beta.18" }, "sideEffects": [ "es/**/style/*", diff --git a/yarn.lock b/yarn.lock index 35963671c..377c23e9a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,31 @@ # yarn lockfile v1 +"@ant-design-vue/babel-helper-vue-compatible-props@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@ant-design-vue/babel-helper-vue-compatible-props/-/babel-helper-vue-compatible-props-1.0.0.tgz#1cf8a267e04e7de4bd9207eb457bb40fbe96d69a" + integrity sha512-BHOaxm9EJOqoBYWUMVFKwjgDkdqbGnY1KhQBJwTdrQGRDVjVXkxzyoDGJV52YAGgHQrdaSMWakwZIiTfncsNJQ== + dependencies: + "@ant-design-vue/babel-helper-vue-transform-on" "^1.0.1" + +"@ant-design-vue/babel-helper-vue-transform-on@^1.0.0", "@ant-design-vue/babel-helper-vue-transform-on@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@ant-design-vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.1.tgz#d219d92f4e1fc5e7add211c347c7fa000518b623" + integrity sha512-dOAPf/tCM2lCG8FhvOMFBaOdMElMEGhOoocMXEWvHW2l1KIex+UibDcq4bdBEJpDMLrnbNOqci9E7P2dARP6lg== + +"@ant-design-vue/babel-plugin-jsx@^1.0.0-alpha.6": + version "1.0.0-alpha.6" + resolved "https://registry.npmjs.org/@ant-design-vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0-alpha.6.tgz#bbb844b91c0032922f80e3d1f062177444077dae" + integrity sha512-f95WdmKQkDGfSHHbqQ3xD5B/PPdg/DhHYlZE3UbIAN08e0YcjM+V1QlFAJYDfcefvsmLA/fGu/bIosBPZDZFWg== + dependencies: + "@ant-design-vue/babel-helper-vue-compatible-props" "^1.0.0" + "@ant-design-vue/babel-helper-vue-transform-on" "^1.0.0" + "@babel/helper-module-imports" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + camelcase "^6.0.0" + html-tags "^3.1.0" + svg-tags "^1.0.0" + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" @@ -47,7 +72,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@^7.9.6": +"@babel/core@^7.10.1": version "7.10.4" resolved "https://registry.npmjs.org/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d" integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA== @@ -567,14 +592,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.2.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" - integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-jsx@^7.8.3": +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.10.1": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== @@ -824,7 +842,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-object-assign@^7.8.3": +"@babel/plugin-transform-object-assign@^7.10.1": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.10.4.tgz#f7c8f54ce8052ccd8b9da9b3358848423221c338" integrity sha512-6zccDhYEICfMeQqIjuY5G09/yhKzG30DKHJeYBQUHIsJH7c2jXSGvgwRalufLAXAq432OSlsEfAOLlzEsQzxVw== @@ -868,7 +886,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-runtime@^7.9.6": +"@babel/plugin-transform-runtime@^7.10.1": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.4.tgz#594fb53453ea1b6f0779cceb48ce0718a447feb7" integrity sha512-8ULlGv8p+Vuxu+kz2Y1dk6MYS2b/Dki+NO6/0ZlfSj5tMalfDL7jI/o/2a+rrWLqSXvnadEqc2WguB4gdQIxZw== @@ -939,7 +957,7 @@ "@babel/helper-create-regexp-features-plugin" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4" -"@babel/preset-env@^7.9.6": +"@babel/preset-env@^7.10.1": version "7.10.4" resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.10.4.tgz#fbf57f9a803afd97f4f32e4f798bb62e4b2bef5f" integrity sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== @@ -1020,7 +1038,7 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-typescript@^7.9.0": +"@babel/preset-typescript@^7.10.1": version "7.10.4" resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz#7d5d052e52a682480d6e2cc5aa31be61c8c25e36" integrity sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== @@ -1981,40 +1999,41 @@ semver "^6.3.0" tsutils "^3.17.1" -"@vant/cli@^3.0.0-alpha.0": - version "3.0.0-alpha.0" - resolved "https://registry.npmjs.org/@vant/cli/-/cli-3.0.0-alpha.0.tgz#f25c8815b8d0b0360d1c2853ba411e10c072afe7" - integrity sha512-rCcYTWh9LYgw2suCjHc3McI77OEHFwdS+te3cNj9+NJV4PVbfsXfho/bHcndNDqEal0KBsOM0JjyfzB2v3z2mA== +"@vant/cli@^3.0.0-alpha.1": + version "3.0.0-alpha.1" + resolved "https://registry.npmjs.org/@vant/cli/-/cli-3.0.0-alpha.1.tgz#3719cc47e6157b70096854ad1c1bb24626b7491c" + integrity sha512-zq+dwYoXi6DbNJOpRAR2OkX63WHr1XWCr0w8woKJIgNa47Brr+rrss1L2WkGgPdSYZcWXUIOYuVCWEg15lOLJg== dependencies: - "@babel/core" "^7.9.6" - "@babel/plugin-syntax-jsx" "^7.8.3" - "@babel/plugin-transform-object-assign" "^7.8.3" - "@babel/plugin-transform-runtime" "^7.9.6" - "@babel/preset-env" "^7.9.6" - "@babel/preset-typescript" "^7.9.0" + "@ant-design-vue/babel-plugin-jsx" "^1.0.0-alpha.6" + "@babel/core" "^7.10.1" + "@babel/plugin-syntax-jsx" "^7.10.1" + "@babel/plugin-transform-object-assign" "^7.10.1" + "@babel/plugin-transform-runtime" "^7.10.1" + "@babel/preset-env" "^7.10.1" + "@babel/preset-typescript" "^7.10.1" "@nuxt/friendly-errors-webpack-plugin" "^2.5.0" - "@types/jest" "^25.2.1" + "@types/jest" "^25.2.3" + "@types/webpack" "^4.41.13" + "@types/webpack-dev-server" "^3.11.0" "@vant/eslint-config" "^2.2.2" "@vant/markdown-loader" "^3.0.0-alpha.0" "@vant/markdown-vetur" "^2.0.1" "@vant/stylelint-config" "^1.3.0" "@vant/touch-emulator" "^1.2.0" - "@vue/babel-preset-jsx" "^1.1.2" "@vue/component-compiler-utils" "^3.1.2" "@vue/test-utils" "1.0.0-beta.29" address "^1.1.2" - autoprefixer "^9.7.6" - babel-jest "^25.5.1" + autoprefixer "^9.8.0" + babel-jest "^26.0.1" babel-loader "^8.1.0" babel-plugin-import "^1.13.0" - babel-plugin-transform-jsx-vue3 "^0.1.8" cache-loader "^4.1.0" chokidar "^3.4.0" clean-css "^4.2.3" - codecov "^3.6.5" + codecov "^3.7.0" commander "^5.1.0" - consola "^2.11.3" - conventional-changelog "^3.1.18" + consola "^2.12.2" + conventional-changelog "^3.1.21" cross-env "^7.0.2" css-loader "^3.5.3" eslint "^6.8.0" @@ -2028,25 +2047,25 @@ jest-canvas-mock "^2.2.0" jest-serializer-vue "^2.0.2" less "^3.11.1" - less-loader "^6.0.0" - lint-staged "^10.2.2" + less-loader "^6.1.0" + lint-staged "^10.2.7" lodash "^4.17.15" ora "^4.0.4" portfinder "^1.0.26" - postcss "^7.0.28" + postcss "^7.0.31" postcss-loader "^3.0.0" prettier "^2.0.5" - release-it "^13.5.7" - sass "^1.26.5" + release-it "^13.6.1" + sass "^1.26.7" sass-loader "^8.0.2" style-loader "^1.2.1" - stylelint "^13.3.3" - typescript "^3.8.3" + stylelint "^13.5.0" + typescript "^3.9.3" vue-jest "4.0.0-beta.2" - vue-loader "^16.0.0-beta.3" - vue-router "^4.0.0-alpha.12" + vue-loader "^16.0.0-beta.4" + vue-router "^4.0.0-beta.1" webpack "^4.43.0" - webpack-dev-server "3.10.3" + webpack-dev-server "3.11.0" webpack-merge "^4.2.2" webpackbar "^4.0.0" @@ -2102,114 +2121,50 @@ resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8" integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ== -"@vue/babel-helper-vue-jsx-merge-props@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040" - integrity sha512-6tyf5Cqm4m6v7buITuwS+jHzPlIPxbFzEhXR5JGZpbrvOcp1hiQKckd305/3C7C36wFekNTQSxAtgeM0j0yoUw== - -"@vue/babel-plugin-transform-vue-jsx@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.1.2.tgz#c0a3e6efc022e75e4247b448a8fc6b86f03e91c0" - integrity sha512-YfdaoSMvD1nj7+DsrwfTvTnhDXI7bsuh+Y5qWwvQXlD24uLgnsoww3qbiZvWf/EoviZMrvqkqN4CBw0W3BWUTQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" - "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" - html-tags "^2.0.0" - lodash.kebabcase "^4.1.1" - svg-tags "^1.0.0" - -"@vue/babel-preset-jsx@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.1.2.tgz#2e169eb4c204ea37ca66c2ea85a880bfc99d4f20" - integrity sha512-zDpVnFpeC9YXmvGIDSsKNdL7qCG2rA3gjywLYHPCKDT10erjxF4U+6ay9X6TW5fl4GsDlJp9bVfAVQAAVzxxvQ== - dependencies: - "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" - "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" - "@vue/babel-sugar-functional-vue" "^1.1.2" - "@vue/babel-sugar-inject-h" "^1.1.2" - "@vue/babel-sugar-v-model" "^1.1.2" - "@vue/babel-sugar-v-on" "^1.1.2" - -"@vue/babel-sugar-functional-vue@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.1.2.tgz#f7e24fba09e6f1ee70104560a8808057555f1a9a" - integrity sha512-YhmdJQSVEFF5ETJXzrMpj0nkCXEa39TvVxJTuVjzvP2rgKhdMmQzlJuMv/HpadhZaRVMCCF3AEjjJcK5q/cYzQ== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@vue/babel-sugar-inject-h@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.1.2.tgz#8a5276b6d8e2ed16ffc8078aad94236274e6edf0" - integrity sha512-VRSENdTvD5htpnVp7i7DNuChR5rVMcORdXjvv5HVvpdKHzDZAYiLSD+GhnhxLm3/dMuk8pSzV+k28ECkiN5m8w== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@vue/babel-sugar-v-model@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.1.2.tgz#1ff6fd1b800223fc9cb1e84dceb5e52d737a8192" - integrity sha512-vLXPvNq8vDtt0u9LqFdpGM9W9IWDmCmCyJXuozlq4F4UYVleXJ2Fa+3JsnTZNJcG+pLjjfnEGHci2339Kj5sGg== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" - "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" - camelcase "^5.0.0" - html-tags "^2.0.0" - svg-tags "^1.0.0" - -"@vue/babel-sugar-v-on@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.1.2.tgz#b2ef99b8f2fab09fbead25aad70ef42e1cf5b13b" - integrity sha512-T8ZCwC8Jp2uRtcZ88YwZtZXe7eQrJcfRq0uTFy6ShbwYJyz5qWskRFoVsdTi9o0WEhmQXxhQUewodOSCUPVmsQ== - dependencies: - "@babel/plugin-syntax-jsx" "^7.2.0" - "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" - camelcase "^5.0.0" - -"@vue/compiler-core@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/compiler-core/download/@vue/compiler-core-3.0.0-beta.14.tgz#69019b5c3da8335e6d83f81b37648caf120dbacd" - integrity sha1-aQGbXD2oM15tg/gbN2SMrxINus0= +"@vue/compiler-core@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.0-beta.18.tgz#52cf3e4f1f627230e9affb9da22a408a624e7e50" + integrity sha512-3JSSCs11lYuNdfyT5DVB06OeWlT/aAK8JKHLmG8OsXkT0flVSc19mtnqi+EaFhW3rT63qT0fjJfTfU0Wn1PN9Q== dependencies: "@babel/parser" "^7.8.6" "@babel/types" "^7.8.6" - "@vue/shared" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.18" estree-walker "^0.8.1" source-map "^0.6.1" -"@vue/compiler-dom@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/compiler-dom/download/@vue/compiler-dom-3.0.0-beta.14.tgz#2ea1c165e06e9630e687a7a5cbde4e8b20b064ac" - integrity sha1-LqHBZeBuljDmh6ely95OiyCwZKw= +"@vue/compiler-dom@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.0-beta.18.tgz#089b37c71850df28d2304e2d5034461af6065ddf" + integrity sha512-vTfZNfn/bfGVJCdQwQN5xeBIaFCYPKp/NZCyMewh0wdju2ewzSmQIzG3gaSqEIxYor/FQmFkGuRRzWJJBmcoUQ== dependencies: - "@vue/compiler-core" "3.0.0-beta.14" - "@vue/shared" "3.0.0-beta.14" + "@vue/compiler-core" "3.0.0-beta.18" + "@vue/shared" "3.0.0-beta.18" -"@vue/compiler-sfc@^3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/compiler-sfc/download/@vue/compiler-sfc-3.0.0-beta.14.tgz#3984416c0ed1bbdfbeee9d33c8a2c1152ed00770" - integrity sha1-OYRBbA7Ru9++7p0zyKLBFS7QB3A= +"@vue/compiler-sfc@^3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.0-beta.18.tgz#3c4660396ca267b443214c09b71923bce17c5d8e" + integrity sha512-RSErTbnKWkI4hAFBTOLg1tCHHVP2hG7NDbf2LVJdf9OWBr9FWoTQaMTby25rJs6aiSch7reNRzToq6XMLagQjQ== dependencies: - "@vue/compiler-core" "3.0.0-beta.14" - "@vue/compiler-dom" "3.0.0-beta.14" - "@vue/compiler-ssr" "3.0.0-beta.14" - "@vue/shared" "3.0.0-beta.14" + "@vue/compiler-core" "3.0.0-beta.18" + "@vue/compiler-dom" "3.0.0-beta.18" + "@vue/compiler-ssr" "3.0.0-beta.18" + "@vue/shared" "3.0.0-beta.18" consolidate "^0.15.1" hash-sum "^2.0.0" lru-cache "^5.1.1" merge-source-map "^1.1.0" postcss "^7.0.27" - postcss-modules "^2.0.0" + postcss-modules "^3.1.0" postcss-selector-parser "^6.0.2" source-map "^0.6.1" -"@vue/compiler-ssr@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/compiler-ssr/download/@vue/compiler-ssr-3.0.0-beta.14.tgz#e5a0dc1afcaf4f110e2e447b41bb3d8172e3e3e9" - integrity sha1-5aDcGvyvTxEOLkR7Qbs9gXLj4+k= +"@vue/compiler-ssr@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.0.0-beta.18.tgz#072048fecd40d39b8762beb73da1ae45f3750bbc" + integrity sha512-/W83jw+PToUUX/SouajhwMwewEe66lUiTb4lixZ3f06o0VPJCFCLtZ+WQbN+g2m+iE7DegnkcPq6ly7gflcRXQ== dependencies: - "@vue/compiler-dom" "3.0.0-beta.14" - "@vue/shared" "3.0.0-beta.14" + "@vue/compiler-dom" "3.0.0-beta.18" + "@vue/shared" "3.0.0-beta.18" "@vue/component-compiler-utils@^2.4.0": version "2.6.0" @@ -2242,34 +2197,34 @@ optionalDependencies: prettier "^1.18.2" -"@vue/reactivity@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/reactivity/download/@vue/reactivity-3.0.0-beta.14.tgz#a041ec24ce2e545583a6a1a42774311c16870a91" - integrity sha1-oEHsJM4uVFWDpqGkJ3QxHBaHCpE= +"@vue/reactivity@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.0-beta.18.tgz#b6562661eca6b7bd4d633db5df867b41c8e3c648" + integrity sha512-UFKONXh5XZCwynGrS6CAYTz3AoNVmLUpuQnfl3z8XbHulw9kqVwFoQgXwFBlrizdLsPoNW0s3FHPmtqC9Ohjgg== dependencies: - "@vue/shared" "3.0.0-beta.14" + "@vue/shared" "3.0.0-beta.18" -"@vue/runtime-core@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/runtime-core/download/@vue/runtime-core-3.0.0-beta.14.tgz#4f8162befd6ad1ac55cc6c142edc8301b090658a" - integrity sha1-T4Fivv1q0axVzGwULtyDAbCQZYo= +"@vue/runtime-core@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.0-beta.18.tgz#373ccec46e37826b9976f21039287bfa69f4ee16" + integrity sha512-ZgIxCSuR1luq3pmWQbsYkn6ybUK/BKAWRQwAxUCP9BjFHnvN0W4BSLwy6VuH2l2ToKGni+xPxpDZhQQQsVAfng== dependencies: - "@vue/reactivity" "3.0.0-beta.14" - "@vue/shared" "3.0.0-beta.14" + "@vue/reactivity" "3.0.0-beta.18" + "@vue/shared" "3.0.0-beta.18" -"@vue/runtime-dom@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/runtime-dom/download/@vue/runtime-dom-3.0.0-beta.14.tgz#080e9dd48a95da639f9fcc6d70a2d9620aec6ab8" - integrity sha1-CA6d1IqV2mOfn8xtcKLZYgrsarg= +"@vue/runtime-dom@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.0-beta.18.tgz#9b9f6af723bf9896fdce58857e07401ef521cba3" + integrity sha512-2ym4EyWg1C/UDXuVjFyqwLgAjrWRTRM3wHBmp0TlpoXSSNvIEJg5HXRgC1jnHtkVbGmyHHPndsbFP+oBj10tzQ== dependencies: - "@vue/runtime-core" "3.0.0-beta.14" - "@vue/shared" "3.0.0-beta.14" + "@vue/runtime-core" "3.0.0-beta.18" + "@vue/shared" "3.0.0-beta.18" csstype "^2.6.8" -"@vue/shared@3.0.0-beta.14": - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/@vue/shared/download/@vue/shared-3.0.0-beta.14.tgz#886afe5c233a5b255c186142324c40f114958af5" - integrity sha1-iGr+XCM6WyVcGGFCMkxA8RSVivU= +"@vue/shared@3.0.0-beta.18": + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.0-beta.18.tgz#1326efa98fe49b9ef3effbec88189b88ed7544a7" + integrity sha512-wRvQaTHeCt3xxqj3UpMR2JxkkU7ul/9RMqSxGJhOd4Bsp72Md4H83XkijHy8LkPKZWszmxjEpfCYuw9MU0a4kg== "@vue/test-utils@1.0.0-beta.29": version "1.0.0-beta.29" @@ -2597,11 +2552,6 @@ ansi-regex@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -2947,13 +2897,6 @@ babel-plugin-jest-hoist@^26.1.0: "@types/babel__core" "^7.0.0" "@types/babel__traverse" "^7.0.6" -babel-plugin-transform-jsx-vue3@^0.1.8: - version "0.1.9" - resolved "https://registry.npmjs.org/babel-plugin-transform-jsx-vue3/-/babel-plugin-transform-jsx-vue3-0.1.9.tgz#5951c96e68a3281eb25ff11bfd8160bad47bba9a" - integrity sha512-braK/4Wd6Vjpk4Z8+KooU8HEPBLdW3lNE+k0IZIKnsZ9kGIaeymC8K/I61N21gguw5np7pRKcpaxfTj00/W8kA== - dependencies: - esutils "^2.0.2" - babel-preset-current-node-syntax@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6" @@ -3492,17 +3435,6 @@ chalk@4.1.0, chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.npm.taobao.org/chalk/download/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -4278,18 +4210,6 @@ css-loader@^3.5.3: schema-utils "^2.6.6" semver "^6.3.0" -css-modules-loader-core@^1.1.0: - version "1.1.0" - resolved "https://registry.npm.taobao.org/css-modules-loader-core/download/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16" - integrity sha1-WQhmgpShvs0mGuCkziGwtVHyHRY= - dependencies: - icss-replace-symbols "1.1.0" - postcss "6.0.1" - postcss-modules-extract-imports "1.1.0" - postcss-modules-local-by-default "1.2.0" - postcss-modules-scope "1.1.0" - postcss-modules-values "1.3.0" - css-select@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" @@ -4300,15 +4220,6 @@ css-select@^1.1.0: domutils "1.5.1" nth-check "~1.0.1" -css-selector-tokenizer@^0.7.0: - version "0.7.2" - resolved "https://registry.npm.taobao.org/css-selector-tokenizer/download/css-selector-tokenizer-0.7.2.tgz?cache=0&sync_timestamp=1583233392235&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-selector-tokenizer%2Fdownload%2Fcss-selector-tokenizer-0.7.2.tgz#11e5e27c9a48d90284f22d45061c303d7a25ad87" - integrity sha1-EeXifJpI2QKE8i1FBhwwPXolrYc= - dependencies: - cssesc "^3.0.0" - fastparse "^1.1.2" - regexpu-core "^4.6.0" - css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" @@ -5395,11 +5306,6 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fastparse@^1.1.2: - version "1.1.2" - resolved "https://registry.npm.taobao.org/fastparse/download/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha1-kXKMWllC7O2FMSg8eUQe5BIsNak= - fastq@^1.6.0: version "1.6.1" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.1.tgz#4570c74f2ded173e71cf0beb08ac70bb85826791" @@ -6063,18 +5969,6 @@ hard-rejection@^2.1.0: resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.npm.taobao.org/has-ansi/download/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -6401,7 +6295,7 @@ iconv-lite@0.4.24, iconv-lite@^0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" -icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0: +icss-replace-symbols@^1.1.0: version "1.1.0" resolved "https://registry.npm.taobao.org/icss-replace-symbols/download/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= @@ -7985,11 +7879,6 @@ lodash.ismatch@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= -lodash.kebabcase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" - integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= - lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -9447,13 +9336,6 @@ postcss-media-query-parser@^0.2.3: resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ= -postcss-modules-extract-imports@1.1.0: - version "1.1.0" - resolved "https://registry.npm.taobao.org/postcss-modules-extract-imports/download/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb" - integrity sha1-thTJcgvmgW6u41+zpfqh26agXds= - dependencies: - postcss "^6.0.1" - postcss-modules-extract-imports@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" @@ -9461,14 +9343,6 @@ postcss-modules-extract-imports@^2.0.0: dependencies: postcss "^7.0.5" -postcss-modules-local-by-default@1.2.0: - version "1.2.0" - resolved "https://registry.npm.taobao.org/postcss-modules-local-by-default/download/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" - integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= - dependencies: - css-selector-tokenizer "^0.7.0" - postcss "^6.0.1" - postcss-modules-local-by-default@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" @@ -9479,14 +9353,6 @@ postcss-modules-local-by-default@^3.0.2: postcss-selector-parser "^6.0.2" postcss-value-parser "^4.0.0" -postcss-modules-scope@1.1.0: - version "1.1.0" - resolved "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" - integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= - dependencies: - css-selector-tokenizer "^0.7.0" - postcss "^6.0.1" - postcss-modules-scope@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" @@ -9495,14 +9361,6 @@ postcss-modules-scope@^2.2.0: postcss "^7.0.6" postcss-selector-parser "^6.0.0" -postcss-modules-values@1.3.0: - version "1.3.0" - resolved "https://registry.npm.taobao.org/postcss-modules-values/download/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" - integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= - dependencies: - icss-replace-symbols "^1.1.0" - postcss "^6.0.1" - postcss-modules-values@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" @@ -9511,15 +9369,19 @@ postcss-modules-values@^3.0.0: icss-utils "^4.0.0" postcss "^7.0.6" -postcss-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.npm.taobao.org/postcss-modules/download/postcss-modules-2.0.0.tgz?cache=0&sync_timestamp=1586850154478&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-modules%2Fdownload%2Fpostcss-modules-2.0.0.tgz#473d0d7326651d8408585c2a154115d5cb36cce0" - integrity sha1-Rz0NcyZlHYQIWFwqFUEV1cs2zOA= +postcss-modules@^3.1.0: + version "3.2.0" + resolved "https://registry.npmjs.org/postcss-modules/-/postcss-modules-3.2.0.tgz#1ca870d197cd09a7964253e12de2aac906c94256" + integrity sha512-ceodlVbBypGD3R7EI1xM7gz28J0syaXq0VKd7rJVXVlOSkxUIRBRJQjBgpoKnKVFNAcCjtLVgZqBA3mUNntWPA== dependencies: - css-modules-loader-core "^1.1.0" generic-names "^2.0.1" + icss-replace-symbols "^1.1.0" lodash.camelcase "^4.3.0" - postcss "^7.0.1" + postcss "^7.0.32" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^3.0.2" + postcss-modules-scope "^2.2.0" + postcss-modules-values "^3.0.0" string-hash "^1.1.1" postcss-reporter@^6.0.0, postcss-reporter@^6.0.1: @@ -9637,24 +9499,6 @@ postcss-value-parser@^4.1.0: resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== -postcss@6.0.1: - version "6.0.1" - resolved "https://registry.npm.taobao.org/postcss/download/postcss-6.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss%2Fdownload%2Fpostcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" - integrity sha1-AA29H47vIXqjaLmiEsX8QLKo8/I= - dependencies: - chalk "^1.1.3" - source-map "^0.5.6" - supports-color "^3.2.3" - -postcss@^6.0.1: - version "6.0.23" - resolved "https://registry.npm.taobao.org/postcss/download/postcss-6.0.23.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss%2Fdownload%2Fpostcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" - integrity sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ= - dependencies: - chalk "^2.4.1" - source-map "^0.6.1" - supports-color "^5.4.0" - postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.13, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7: version "7.0.28" resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.28.tgz#d349ced7743475717ba91f6810efb58c51fb5dbb" @@ -10160,7 +10004,7 @@ regexpp@^3.0.0: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e" integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g== -regexpu-core@^4.6.0, regexpu-core@^4.7.0: +regexpu-core@^4.7.0: version "4.7.0" resolved "https://registry.npm.taobao.org/regexpu-core/download/regexpu-core-4.7.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregexpu-core%2Fdownload%2Fregexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" integrity sha1-/L9FjFBDGwu3tF1pZ7gZLZHz2Tg= @@ -11580,19 +11424,7 @@ supports-color@7.1.0, supports-color@^7.0.0, supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-2.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-color%2Fdownload%2Fsupports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^3.2.3: - version "3.2.3" - resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-3.2.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-color%2Fdownload%2Fsupports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= - dependencies: - has-flag "^1.0.0" - -supports-color@^5.3.0, supports-color@^5.4.0: +supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -12447,10 +12279,10 @@ vue-lazyload@1.2.3: resolved "https://registry.yarnpkg.com/vue-lazyload/-/vue-lazyload-1.2.3.tgz#901f9ec15c7e6ca78781a2bae4a343686bdedb2c" integrity sha512-DC0ZwxanbRhx79tlA3zY5OYJkH8FYp3WBAnAJbrcuoS8eye1P73rcgAZhyxFSPUluJUTelMB+i/+VkNU/qVm7g== -vue-loader@^16.0.0-beta.3: - version "16.0.0-beta.3" - resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.3.tgz#2374094399fed98a8a5750912f3caaaefa814553" - integrity sha512-B1jRmai+/sr5PDkRqZe6KllBGMJb4+AsjA44yg1dAod8W+tIdvKTffVEl+5lcXSZy5NsjEx3KqpvV6qq8l/ggA== +vue-loader@^16.0.0-beta.4: + version "16.0.0-beta.4" + resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-beta.4.tgz#1d9d7894f430992096727c4414bcf3b1ae8c1be9" + integrity sha512-uh/+SIwoN+hny0+GqxdkTuEmt1NV4wb8etF5cKkB1YVMv29ck0byrmkt8IIYadQ3r/fiYsr2brGJqP+hytQwuw== dependencies: "@types/mini-css-extract-plugin" "^0.9.1" chalk "^3.0.0" @@ -12459,24 +12291,24 @@ vue-loader@^16.0.0-beta.3: merge-source-map "^1.1.0" source-map "^0.6.1" -vue-router@^4.0.0-alpha.12: - version "4.0.0-alpha.12" - resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-alpha.12.tgz#cba18f0a7fcb577d97c8cd10072a9927313db510" - integrity sha512-TJhbWHPZS1v259PKlZf+ljSob0U2RUii3HXQgrcFXsNmeWuqEYEh6trswHHr4+MQdXxHgonyYK28qhBjNhORkA== +vue-router@^4.0.0-beta.1: + version "4.0.0-beta.1" + resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-beta.1.tgz#8ccdc37c991efa30d1519f885dd772307715503a" + integrity sha512-byqdBiKISN9Qrse6A0fgR6tePQNwlAdx+wBgO2x08MEn6hy8ds19uKvosfruVjw5vhpFmjvGR15Z68an+7fRAQ== vue-template-es2015-compiler@^1.9.0: version "1.9.1" resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== -vue@^3.0.0-beta.14: - version "3.0.0-beta.14" - resolved "https://registry.npm.taobao.org/vue/download/vue-3.0.0-beta.14.tgz#d2c8739e00c4a4a06b519c14c57d204c350c980c" - integrity sha1-0shzngDEpKBrUZwUxX0gTDUMmAw= +vue@^3.0.0-beta.18: + version "3.0.0-beta.18" + resolved "https://registry.npmjs.org/vue/-/vue-3.0.0-beta.18.tgz#775b499602ed7ff5e14bef00cd320e77bdfe0dca" + integrity sha512-waevph9s+M/aBf4XJIjfwHlHH7SBEr29dTMqq6ymnp/qJQHsavLlQHjsWRcxkYJ5rKfM6omoW+G6EBRBDB05sA== dependencies: - "@vue/compiler-dom" "3.0.0-beta.14" - "@vue/runtime-dom" "3.0.0-beta.14" - "@vue/shared" "3.0.0-beta.14" + "@vue/compiler-dom" "3.0.0-beta.18" + "@vue/runtime-dom" "3.0.0-beta.18" + "@vue/shared" "3.0.0-beta.18" w3c-hr-time@^1.0.1: version "1.0.2" From 18a3e80864d49169b4e07b21b662af9a83a0cd2f Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 4 Jul 2020 21:20:01 +0800 Subject: [PATCH 015/626] chore: add src-next folder --- {src => src-next}/hooks/use-click-outside.ts | 0 {src => src-next}/hooks/use-global-event.ts | 2 +- {src => src-next}/hooks/use-lock-scroll.ts | 0 {src => src-next}/hooks/use-touch.ts | 8 ++++---- tsconfig.json | 1 + vant.config.js | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) rename {src => src-next}/hooks/use-click-outside.ts (100%) rename {src => src-next}/hooks/use-global-event.ts (92%) rename {src => src-next}/hooks/use-lock-scroll.ts (100%) rename {src => src-next}/hooks/use-touch.ts (84%) diff --git a/src/hooks/use-click-outside.ts b/src-next/hooks/use-click-outside.ts similarity index 100% rename from src/hooks/use-click-outside.ts rename to src-next/hooks/use-click-outside.ts diff --git a/src/hooks/use-global-event.ts b/src-next/hooks/use-global-event.ts similarity index 92% rename from src/hooks/use-global-event.ts rename to src-next/hooks/use-global-event.ts index 319c043bf..a5f453001 100644 --- a/src/hooks/use-global-event.ts +++ b/src-next/hooks/use-global-event.ts @@ -1,4 +1,4 @@ -import { on, off } from '../utils/dom/event'; +import { on, off } from '../../src/utils/dom/event'; import { Ref, watch, diff --git a/src/hooks/use-lock-scroll.ts b/src-next/hooks/use-lock-scroll.ts similarity index 100% rename from src/hooks/use-lock-scroll.ts rename to src-next/hooks/use-lock-scroll.ts diff --git a/src/hooks/use-touch.ts b/src-next/hooks/use-touch.ts similarity index 84% rename from src/hooks/use-touch.ts rename to src-next/hooks/use-touch.ts index aaaa5fb5c..44466fe01 100644 --- a/src/hooks/use-touch.ts +++ b/src-next/hooks/use-touch.ts @@ -39,10 +39,10 @@ export function useTouch() { function move(event: TouchEvent) { const touch = event.touches[0]; - deltaX.value = touch.clientX - this.startX; - deltaY.value = touch.clientY - this.startY; - offsetX.value = Math.abs(this.deltaX); - offsetY.value = Math.abs(this.deltaY); + deltaX.value = touch.clientX - startX.value; + deltaY.value = touch.clientY - startY.value; + offsetX.value = Math.abs(deltaX.value); + offsetY.value = Math.abs(deltaY.value); if (!direction.value) { direction.value = getDirection(offsetX.value, offsetY.value); diff --git a/tsconfig.json b/tsconfig.json index c0484590a..2e7200711 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,7 @@ "include": [ "types/**/*", "src/**/*", + "src-next/**/*" ], "exclude": [ "**/*.spec.ts", diff --git a/vant.config.js b/vant.config.js index f1af8287d..5aa319d97 100644 --- a/vant.config.js +++ b/vant.config.js @@ -1,7 +1,7 @@ module.exports = { name: 'vant', build: { - srcDir: 'src-v3', + srcDir: 'src-next', skipInstall: ['lazyload'], site: { publicPath: 'https://b.yzcdn.cn/vant/', From 7346f20e96defbcf5a4a14717e1044cd1075279a Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 4 Jul 2020 21:29:10 +0800 Subject: [PATCH 016/626] fix: currentRoute --- packages/vant-cli/site/common/iframe-router.js | 2 +- packages/vant-cli/site/desktop/App.vue | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/vant-cli/site/common/iframe-router.js b/packages/vant-cli/site/common/iframe-router.js index 703beec2b..e16dbaaf1 100644 --- a/packages/vant-cli/site/common/iframe-router.js +++ b/packages/vant-cli/site/common/iframe-router.js @@ -7,7 +7,7 @@ import { iframeReady, isMobile } from '.'; window.syncPath = function() { const router = window.vueRouter; const isInIframe = window !== window.top; - const currentDir = router.history.current.path; + const currentDir = router.currentRoute.value.path; if (isInIframe) { window.top.replacePath(currentDir); diff --git a/packages/vant-cli/site/desktop/App.vue b/packages/vant-cli/site/desktop/App.vue index 79610a9e1..609d70799 100644 --- a/packages/vant-cli/site/desktop/App.vue +++ b/packages/vant-cli/site/desktop/App.vue @@ -1,6 +1,7 @@