diff --git a/package.json b/package.json index 92ad69250..f371038ef 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "vue": "^3.0.0" }, "devDependencies": { - "@vant/cli": "^3.4.1", + "@vant/cli": "^3.5.1", "@vue/compiler-sfc": "^3.0.6", "prettier": "2.1.0", "vue": "^3.0.6" diff --git a/src/action-sheet/test/index.spec.ts b/src/action-sheet/test/index.spec.ts index f8f6f97ae..6b3290794 100644 --- a/src/action-sheet/test/index.spec.ts +++ b/src/action-sheet/test/index.spec.ts @@ -10,8 +10,8 @@ test('should emit select event after clicking option', () => { }); wrapper.find('.van-action-sheet__item').trigger('click'); - expect(wrapper.emitted('select').length).toEqual(1); - expect(wrapper.emitted('select')[0]).toEqual([ + expect(wrapper.emitted('select')!.length).toEqual(1); + expect(wrapper.emitted('select')![0]).toEqual([ { name: 'Option', }, @@ -66,7 +66,7 @@ test('should emit cancel event after clicking cancel button', () => { }); wrapper.find('.van-action-sheet__cancel').trigger('click'); - expect(wrapper.emitted('cancel').length).toEqual(1); + expect(wrapper.emitted('cancel')!.length).toEqual(1); }); test('should render subname correctly', () => { @@ -204,8 +204,8 @@ test('should close after clicking option if close-on-click-action prop is true', const option = wrapper.find('.van-action-sheet__item'); option.trigger('click'); - expect(wrapper.emitted('update:show').length).toEqual(1); - expect(wrapper.emitted('update:show')[0]).toEqual([false]); + expect(wrapper.emitted('update:show')!.length).toEqual(1); + expect(wrapper.emitted('update:show')![0]).toEqual([false]); }); test('should emit click-overlay event and closed after clicking the overlay', () => { @@ -218,7 +218,7 @@ test('should emit click-overlay event and closed after clicking the overlay', () }); wrapper.find('.van-overlay').trigger('click'); - expect(wrapper.emitted('update:show')[0]).toEqual([false]); + expect(wrapper.emitted('update:show')![0]).toEqual([false]); expect(onClickOverlay).toHaveBeenCalledTimes(1); }); diff --git a/src/address-list/test/index.spec.ts b/src/address-list/test/index.spec.ts index e84813cdd..8d60e339b 100644 --- a/src/address-list/test/index.spec.ts +++ b/src/address-list/test/index.spec.ts @@ -36,7 +36,7 @@ test('should emit select event after clicking radio icon', () => { wrapper.find('.van-radio__icon').trigger('click'); - expect(wrapper.emitted('select')[0]).toEqual([list[0], 0]); + expect(wrapper.emitted('select')![0]).toEqual([list[0], 0]); }); test('should emit click-item event when item is clicked', () => { @@ -48,5 +48,5 @@ test('should emit click-item event when item is clicked', () => { wrapper.find('.van-address-item').trigger('click'); - expect(wrapper.emitted('click-item')[0]).toEqual([list[0], 0]); + expect(wrapper.emitted('click-item')![0]).toEqual([list[0], 0]); }); diff --git a/src/button/test/index.spec.ts b/src/button/test/index.spec.ts index c28bdd0b3..b3df19119 100644 --- a/src/button/test/index.spec.ts +++ b/src/button/test/index.spec.ts @@ -5,7 +5,7 @@ test('should emit click event', () => { const wrapper = mount(Button); wrapper.trigger('click'); - expect(wrapper.emitted('click').length).toEqual(1); + expect(wrapper.emitted('click')!.length).toEqual(1); }); test('should not emit click event when disabled', () => { diff --git a/src/card/test/index.spec.ts b/src/card/test/index.spec.ts index 5aace5531..1e9af9c79 100644 --- a/src/card/test/index.spec.ts +++ b/src/card/test/index.spec.ts @@ -20,7 +20,7 @@ test('should emit click-thumb event after clicking thumb', () => { }); wrapper.find('.van-card__thumb').trigger('click'); - expect(wrapper.emitted('click-thumb').length).toEqual(1); + expect(wrapper.emitted('click-thumb')!.length).toEqual(1); }); test('should render price and num slot correctly', () => { diff --git a/src/cascader/test/index.spec.ts b/src/cascader/test/index.spec.ts index 8f3a25264..bd311ff77 100644 --- a/src/cascader/test/index.spec.ts +++ b/src/cascader/test/index.spec.ts @@ -14,7 +14,7 @@ test('should emit change event when active option changed', async () => { wrapper.find('.van-cascader__option').trigger('click'); const firstOption = options[0]; - expect(wrapper.emitted('change')[0]).toEqual([ + expect(wrapper.emitted('change')![0]).toEqual([ { value: firstOption.value, tabIndex: 0, @@ -28,7 +28,7 @@ test('should emit change event when active option changed', async () => { .find('.van-cascader__option') .trigger('click'); const secondOption = options[0].children[0]; - expect(wrapper.emitted('change')[1]).toEqual([ + expect(wrapper.emitted('change')![1]).toEqual([ { value: secondOption.value, tabIndex: 1, @@ -47,7 +47,7 @@ test('should emit finish event when all options is selected', async () => { await later(); wrapper.find('.van-cascader__option').trigger('click'); - expect(wrapper.emitted('finish')[0]).toEqual([ + expect(wrapper.emitted('finish')![0]).toEqual([ { value: option.value, tabIndex: 0, @@ -59,7 +59,7 @@ test('should emit finish event when all options is selected', async () => { test('should emit close event when close icon is clicked', () => { const wrapper = mount(Cascader); wrapper.find('.van-cascader__close-icon').trigger('click'); - expect(wrapper.emitted('close')[0]).toBeTruthy(); + expect(wrapper.emitted('close')![0]).toBeTruthy(); }); test('should not render close icon when closeable is false', () => { @@ -146,7 +146,7 @@ test('should allow to custom field names', async () => { wrapper.find('.van-cascader__option').trigger('click'); const firstOption = options[0]; - expect(wrapper.emitted('change')[0]).toEqual([ + expect(wrapper.emitted('change')![0]).toEqual([ { value: firstOption.code, tabIndex: 0, @@ -160,7 +160,7 @@ test('should allow to custom field names', async () => { .find('.van-cascader__option') .trigger('click'); const secondOption = options[0].items[0]; - expect(wrapper.emitted('change')[1]).toEqual([ + expect(wrapper.emitted('change')![1]).toEqual([ { value: secondOption.code, tabIndex: 1, diff --git a/src/checkbox/test/index.spec.ts b/src/checkbox/test/index.spec.ts index 2fa4c7adb..f709f147d 100644 --- a/src/checkbox/test/index.spec.ts +++ b/src/checkbox/test/index.spec.ts @@ -6,11 +6,11 @@ test('should emit "update:modelValue" event when checkbox icon is clicked', asyn const icon = wrapper.find('.van-checkbox__icon'); icon.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([true]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([true]); await wrapper.setProps({ modelValue: true }); icon.trigger('click'); - expect(wrapper.emitted('update:modelValue')[1]).toEqual([false]); + expect(wrapper.emitted('update:modelValue')![1]).toEqual([false]); }); test('should emit change event when modelValue is changed', async () => { @@ -19,11 +19,11 @@ test('should emit change event when modelValue is changed', async () => { const icon = wrapper.find('.van-checkbox__icon'); icon.trigger('click'); await wrapper.setProps({ modelValue: true }); - expect(wrapper.emitted('change')[0]).toEqual([true]); + expect(wrapper.emitted('change')![0]).toEqual([true]); icon.trigger('click'); await wrapper.setProps({ modelValue: false }); - expect(wrapper.emitted('change')[1]).toEqual([false]); + expect(wrapper.emitted('change')![1]).toEqual([false]); }); test('should not emit "update:modelValue" event when checkbox icon is disabled and clicked', () => { @@ -59,7 +59,7 @@ test('should emit "update:modelValue" event when label is clicked', () => { const icon = wrapper.find('.van-checkbox__label'); icon.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([true]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([true]); }); test('should not emit "update:modelValue" event when label is disabled and clicked', () => { diff --git a/src/contact-card/test/index.spec.ts b/src/contact-card/test/index.spec.ts index 7a50cfb3d..11c049732 100644 --- a/src/contact-card/test/index.spec.ts +++ b/src/contact-card/test/index.spec.ts @@ -4,7 +4,7 @@ import { mount } from '../../../test'; test('should emit click event when clicked', () => { const wrapper = mount(ContactCard); wrapper.trigger('click'); - expect(wrapper.emitted('click').length).toEqual(1); + expect(wrapper.emitted('click')!.length).toEqual(1); }); test('should not emit click event when editable is false and clicked ', () => { diff --git a/src/contact-edit/test/index.spec.ts b/src/contact-edit/test/index.spec.ts index 01f425a02..27a392c82 100644 --- a/src/contact-edit/test/index.spec.ts +++ b/src/contact-edit/test/index.spec.ts @@ -49,14 +49,14 @@ test('should emit save event after submitting form', async () => { }); await submitForm(wrapper); - expect(wrapper.emitted<[ContactInfo]>('save')[0][0]).toEqual(contactInfo); + expect(wrapper.emitted<[ContactInfo]>('save')![0][0]).toEqual(contactInfo); }); test('should watch contact info', async () => { const wrapper = mount(ContactEdit); await wrapper.setProps({ contactInfo }); await submitForm(wrapper); - expect(wrapper.emitted<[ContactInfo]>('save')[0][0]).toEqual(contactInfo); + expect(wrapper.emitted<[ContactInfo]>('save')![0][0]).toEqual(contactInfo); }); test('should allow deleting contact', async () => { diff --git a/src/contact-list/test/index.spec.ts b/src/contact-list/test/index.spec.ts index dd796c081..b2e6399aa 100644 --- a/src/contact-list/test/index.spec.ts +++ b/src/contact-list/test/index.spec.ts @@ -18,7 +18,7 @@ test('should render ContactList correctly', () => { test('should emit add event when add button is clicked', () => { const wrapper = mount(ContactList); wrapper.find('.van-contact-list__add').trigger('click'); - expect(wrapper.emitted('add').length).toEqual(1); + expect(wrapper.emitted('add')!.length).toEqual(1); }); test('should emit select event when radio is clicked', () => { @@ -30,8 +30,8 @@ test('should emit select event when radio is clicked', () => { wrapper.find('.van-radio__icon').trigger('click'); - expect(wrapper.emitted('select').length).toEqual(1); - expect(wrapper.emitted('select')[0]).toEqual([contactInfo, 0]); + expect(wrapper.emitted('select')!.length).toEqual(1); + expect(wrapper.emitted('select')![0]).toEqual([contactInfo, 0]); }); test('should emit edit event when edit icon is clicked', () => { @@ -43,6 +43,6 @@ test('should emit edit event when edit icon is clicked', () => { wrapper.find('.van-contact-list__edit').trigger('click'); - expect(wrapper.emitted('edit').length).toEqual(1); - expect(wrapper.emitted('edit')[0]).toEqual([contactInfo, 0]); + expect(wrapper.emitted('edit')!.length).toEqual(1); + expect(wrapper.emitted('edit')![0]).toEqual([contactInfo, 0]); }); diff --git a/src/image/test/index.spec.ts b/src/image/test/index.spec.ts index 2a6628600..0a2d1d7f5 100644 --- a/src/image/test/index.spec.ts +++ b/src/image/test/index.spec.ts @@ -13,7 +13,7 @@ test('should emit load event after image loaded', async () => { await wrapper.find('img').trigger('load'); - expect(wrapper.emitted<[Event]>('load')[0][0]).toBeTruthy(); + expect(wrapper.emitted<[Event]>('load')![0][0]).toBeTruthy(); expect(wrapper.html()).toMatchSnapshot(); }); @@ -37,7 +37,7 @@ test('should emit error event when load image failed', () => { }); wrapper.find('img').trigger('error'); - expect(wrapper.emitted<[Event]>('error')[0][0]).toBeTruthy(); + expect(wrapper.emitted<[Event]>('error')![0][0]).toBeTruthy(); }); test('should render loading placeholder when using lazy-load prop', () => { diff --git a/src/password-input/test/index.spec.ts b/src/password-input/test/index.spec.ts index aec3d7c26..3de5c76e7 100644 --- a/src/password-input/test/index.spec.ts +++ b/src/password-input/test/index.spec.ts @@ -4,7 +4,7 @@ import { mount } from '../../../test'; test('should emit focus event when security is touched', () => { const wrapper = mount(PasswordInput); wrapper.find('.van-password-input__security').trigger('touchstart'); - expect(wrapper.emitted('focus').length).toEqual(1); + expect(wrapper.emitted('focus')!.length).toEqual(1); }); test('should render error info correctly', () => { diff --git a/src/pull-refresh/test/index.spec.ts b/src/pull-refresh/test/index.spec.ts index bc9c00e04..38a1f061a 100644 --- a/src/pull-refresh/test/index.spec.ts +++ b/src/pull-refresh/test/index.spec.ts @@ -111,7 +111,7 @@ test('should render success text correctly', async () => { await later(); // loading - expect(wrapper.emitted('update:modelValue')[0]).toEqual([true]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([true]); await wrapper.setProps({ modelValue: true }); // success @@ -133,7 +133,7 @@ test('should render success slot correctly', async () => { // loading const track = wrapper.find('.van-pull-refresh__track'); triggerDrag(track, 0, 100); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([true]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([true]); await wrapper.setProps({ modelValue: true }); // success diff --git a/src/radio-group/test/index.spec.tsx b/src/radio-group/test/index.spec.tsx index f8c73d010..b1bca4c1e 100644 --- a/src/radio-group/test/index.spec.tsx +++ b/src/radio-group/test/index.spec.tsx @@ -37,11 +37,11 @@ test('should emit "update:modelValue" and "change" event when radio is clicked', await icons[2].trigger('click'); expect(wrapper.vm.result).toEqual('c'); - expect(wrapper.emitted('change')[0]).toEqual(['c']); + expect(wrapper.emitted('change')![0]).toEqual(['c']); await labels[1].trigger('click'); expect(wrapper.vm.result).toEqual('b'); - expect(wrapper.emitted('change')[1]).toEqual(['b']); + expect(wrapper.emitted('change')![1]).toEqual(['b']); await icons[3].trigger('click'); await labels[3].trigger('click'); diff --git a/src/radio/test/index.spec.ts b/src/radio/test/index.spec.ts index 4331d527f..9aed26026 100644 --- a/src/radio/test/index.spec.ts +++ b/src/radio/test/index.spec.ts @@ -13,10 +13,10 @@ test('should emit "update:modelValue" event when radio icon or label is clicked' const icon = wrapper.find('.van-radio__icon'); const label = wrapper.find('.van-radio__label'); icon.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([props.name]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([props.name]); label.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([props.name]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([props.name]); }); test('should not emit "update:modelValue" event when radio icon is disabled and clicked', () => { diff --git a/src/share-sheet/test/index.spec.ts b/src/share-sheet/test/index.spec.ts index 633f86aa6..1d24e9a48 100644 --- a/src/share-sheet/test/index.spec.ts +++ b/src/share-sheet/test/index.spec.ts @@ -53,7 +53,7 @@ test('should emit select event when an option is clicked', () => { }); wrapper.find('.van-share-sheet__option').trigger('click'); - expect(wrapper.emitted('select')[0]).toEqual([ + expect(wrapper.emitted('select')![0]).toEqual([ { icon: 'wechat', name: 'wechat' }, 0, ]); @@ -68,8 +68,8 @@ test('should emit cancel event when the cancel button is clicked', () => { wrapper.find('.van-share-sheet__cancel').trigger('click'); - expect(wrapper.emitted('update:show')[0]).toEqual([false]); - expect(wrapper.emitted('cancel')[0]).toBeTruthy(); + expect(wrapper.emitted('update:show')![0]).toEqual([false]); + expect(wrapper.emitted('cancel')![0]).toBeTruthy(); }); test('should render title and description slot correctly', () => { @@ -102,5 +102,5 @@ test('should emit click-overlay event when overlay is clicked', async () => { const overlay = root.querySelector('.van-overlay')!; trigger(overlay, 'click'); expect(onClickOverlay).toHaveBeenCalledTimes(1); - expect(wrapper.emitted('update:show')[0]).toEqual([false]); + expect(wrapper.emitted('update:show')![0]).toEqual([false]); }); diff --git a/src/slider/test/index.spec.ts b/src/slider/test/index.spec.ts index a007972db..ee8c2f72e 100644 --- a/src/slider/test/index.spec.ts +++ b/src/slider/test/index.spec.ts @@ -24,7 +24,7 @@ test('should emit "update:modelValue" event after dragging button', () => { const button = wrapper.find('.van-slider__button'); triggerDrag(button, 50, 0); - expect(wrapper.emitted('update:modelValue').pop()).toEqual([100]); + expect(wrapper.emitted('update:modelValue')!.pop()).toEqual([100]); }); test('should emit "update:modelValue" event after clicking slider', () => { @@ -35,7 +35,7 @@ test('should emit "update:modelValue" event after clicking slider', () => { }); trigger(wrapper, 'click', 100, 0); - expect(wrapper.emitted('update:modelValue').pop()).toEqual([100]); + expect(wrapper.emitted('update:modelValue')!.pop()).toEqual([100]); }); test('should emit drag-start event when start dragging', () => { @@ -128,7 +128,7 @@ test('should allow to drag vertical slider', () => { const button = wrapper.find('.van-slider__button'); triggerDrag(button, 0, 50); - expect(wrapper.emitted('update:modelValue').pop()).toEqual([100]); + expect(wrapper.emitted('update:modelValue')!.pop()).toEqual([100]); restoreMock(); }); @@ -166,7 +166,7 @@ test('should emit "update:modelValue" event after clicking vertical slider', () }); trigger(wrapper, 'click', 0, 100); - expect(wrapper.emitted('update:modelValue').pop()).toEqual([100]); + expect(wrapper.emitted('update:modelValue')!.pop()).toEqual([100]); }); test('should not emit change event when value not changed', async () => { @@ -179,11 +179,11 @@ test('should not emit change event when value not changed', async () => { const button = wrapper.find('.van-slider__button'); trigger(button, 'touchstart'); trigger(wrapper, 'click', 100, 0); - expect(wrapper.emitted('change').length).toEqual(1); + expect(wrapper.emitted('change')!.length).toEqual(1); await wrapper.setProps({ modelValue: 100 }); trigger(button, 'touchstart'); trigger(wrapper, 'click', 100, 0); - expect(wrapper.emitted('change').length).toEqual(1); + expect(wrapper.emitted('change')!.length).toEqual(1); }); diff --git a/src/stepper/test/index.spec.ts b/src/stepper/test/index.spec.ts index c1e64a2cf..22cba4bf3 100644 --- a/src/stepper/test/index.spec.ts +++ b/src/stepper/test/index.spec.ts @@ -30,8 +30,8 @@ test('should emit minus event when clicking the minus button', async () => { expect(wrapper.emitted('overlimit')).toBeFalsy(); expect(wrapper.emitted('minus')).toBeTruthy(); - expect(wrapper.emitted('change')[0]).toEqual([1, { name: '' }]); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([1]); + expect(wrapper.emitted('change')![0]).toEqual([1, { name: '' }]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([1]); }); test('should emit plus event when clicking the plus button', async () => { @@ -45,8 +45,8 @@ test('should emit plus event when clicking the plus button', async () => { expect(wrapper.emitted('overlimit')).toBeFalsy(); expect(wrapper.emitted('plus')).toBeTruthy(); - expect(wrapper.emitted('change')[0]).toEqual([3, { name: '' }]); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([3]); + expect(wrapper.emitted('change')![0]).toEqual([3, { name: '' }]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([3]); }); test('should emit overlimit event when clicking disabled buttons', async () => { @@ -59,11 +59,11 @@ test('should emit overlimit event when clicking disabled buttons', async () => { const minus = wrapper.find('.van-stepper__minus'); await minus.trigger('click'); - expect(wrapper.emitted('overlimit')[0]).toEqual(['minus']); + expect(wrapper.emitted('overlimit')![0]).toEqual(['minus']); const plus = wrapper.find('.van-stepper__plus'); await plus.trigger('click'); - expect(wrapper.emitted('overlimit')[1]).toEqual(['plus']); + expect(wrapper.emitted('overlimit')![1]).toEqual(['plus']); }); test('should disable plus button when disable-plus prop is true', async () => { @@ -122,7 +122,7 @@ test('should update value after long pressing', async () => { await plus.trigger('touchstart'); await plus.trigger('touchend'); await plus.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([2]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([2]); await plus.trigger('touchstart'); await later(1000); @@ -157,17 +157,17 @@ test('should filter invalid value during user input', async () => { const inputEl = input.element as HTMLInputElement; inputEl.value = ''; await input.trigger('input'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual(['']); + expect(wrapper.emitted('update:modelValue')![0]).toEqual(['']); inputEl.value = 'a'; await input.trigger('input'); expect(inputEl.value).toEqual(''); - expect(wrapper.emitted('update:modelValue')[1]).toBeFalsy(); + expect(wrapper.emitted('update:modelValue')![1]).toBeFalsy(); inputEl.value = '2'; await input.trigger('input'); expect(inputEl.value).toEqual('2'); - expect(wrapper.emitted('update:modelValue')[1]).toEqual([2]); + expect(wrapper.emitted('update:modelValue')![1]).toEqual([2]); }); test('shoud watch modelValue and format it', async () => { @@ -179,7 +179,7 @@ test('shoud watch modelValue and format it', async () => { }); await wrapper.setProps({ modelValue: 10 }); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([5]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([5]); }); test('should format value to integer when using integer prop', async () => { @@ -195,7 +195,7 @@ test('should format value to integer when using integer prop', async () => { await input.trigger('input'); await input.trigger('blur'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([2]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([2]); }); test('should format value to default value when input is invalid', async () => { @@ -210,7 +210,7 @@ test('should format value to default value when input is invalid', async () => { await input.trigger('input'); await input.trigger('blur'); - expect(wrapper.emitted('update:modelValue').pop()).toEqual([1]); + expect(wrapper.emitted('update:modelValue')!.pop()).toEqual([1]); }); test('should emit focus event when input is focused', async () => { @@ -240,10 +240,10 @@ test('should format input value when stepper blured', async () => { const input = wrapper.find('input'); input.element.value = ''; await input.trigger('input'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual(['']); + expect(wrapper.emitted('update:modelValue')![0]).toEqual(['']); await input.trigger('blur'); - expect(wrapper.emitted('update:modelValue')[1]).toEqual([3]); + expect(wrapper.emitted('update:modelValue')![1]).toEqual([3]); expect(wrapper.emitted('blur')).toBeTruthy(); }); @@ -332,8 +332,9 @@ test('should limit dicimal length when using decimal-length prop', async () => { }, }); const plus = wrapper.find('.van-stepper__plus'); + expect(wrapper.emitted('update:modelValue')![0]).toEqual(['1.00']); await plus.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual(['1.20']); + expect(wrapper.emitted('update:modelValue')![1]).toEqual(['1.20']); }); test('should limit decimal-length when inputing', async () => { @@ -357,11 +358,11 @@ test('should emit change event with name when using name prop', async () => { const plus = wrapper.find('.van-stepper__plus'); await plus.trigger('click'); - expect(wrapper.emitted('change')[0]).toEqual([2, { name: '' }]); + expect(wrapper.emitted('change')![0]).toEqual([2, { name: '' }]); await wrapper.setProps({ name: 'name' }); await plus.trigger('click'); - expect(wrapper.emitted('change')[1]).toEqual([3, { name: 'name' }]); + expect(wrapper.emitted('change')![1]).toEqual([3, { name: 'name' }]); }); test('should watch min and max props and format modelValue', async () => { @@ -372,13 +373,13 @@ test('should watch min and max props and format modelValue', async () => { }); await wrapper.setProps({ min: 10 }); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([10]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([10]); await wrapper.setProps({ min: 3, max: 8, }); - expect(wrapper.emitted('update:modelValue')[1]).toEqual([8]); + expect(wrapper.emitted('update:modelValue')![1]).toEqual([8]); }); test('should watch decimal-length prop and format modelValue', async () => { @@ -388,7 +389,7 @@ test('should watch decimal-length prop and format modelValue', async () => { }, }); await wrapper.setProps({ decimalLength: 1 }); - expect(wrapper.emitted('update:modelValue')[0]).toEqual(['1.3']); + expect(wrapper.emitted('update:modelValue')![0]).toEqual(['1.3']); }); test('should watch integer prop and format modelValue', async () => { @@ -398,7 +399,7 @@ test('should watch integer prop and format modelValue', async () => { }, }); await wrapper.setProps({ integer: true }); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([1]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([1]); }); test('should render placeholder correctly', () => { @@ -425,5 +426,5 @@ test('should allow input be to empty when using allow-empty prop', async () => { await wrapper.setProps({ allowEmpty: false }); await input.trigger('blur'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([1]); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([1]); }); diff --git a/src/submit-bar/test/index.spec.ts b/src/submit-bar/test/index.spec.ts index ea7c2af64..b1e3b9d1f 100644 --- a/src/submit-bar/test/index.spec.ts +++ b/src/submit-bar/test/index.spec.ts @@ -5,7 +5,7 @@ test('should emit submit event when submit button is clicked', () => { const wrapper = mount(SubmitBar); const button = wrapper.find('.van-submit-bar__button'); button.trigger('click'); - expect(wrapper.emitted('submit').length).toEqual(1); + expect(wrapper.emitted('submit')!.length).toEqual(1); }); test('should render disabled submit button correctly', () => { diff --git a/src/switch/test/index.spec.ts b/src/switch/test/index.spec.ts index 9f2174507..88aef616a 100644 --- a/src/switch/test/index.spec.ts +++ b/src/switch/test/index.spec.ts @@ -5,26 +5,26 @@ test('should emit update:modelValue event when click the switch button', async ( const wrapper = mount(Switch); wrapper.trigger('click'); - expect(wrapper.emitted('update:modelValue').length).toEqual(1); - expect(wrapper.emitted('update:modelValue')[0]).toEqual([true]); + expect(wrapper.emitted('update:modelValue')!.length).toEqual(1); + expect(wrapper.emitted('update:modelValue')![0]).toEqual([true]); await wrapper.setProps({ modelValue: true }); wrapper.trigger('click'); - expect(wrapper.emitted('update:modelValue').length).toEqual(2); - expect(wrapper.emitted('update:modelValue')[1]).toEqual([false]); + expect(wrapper.emitted('update:modelValue')!.length).toEqual(2); + expect(wrapper.emitted('update:modelValue')![1]).toEqual([false]); }); test('should emit change event when click the switch button', async () => { const wrapper = mount(Switch); wrapper.trigger('click'); - expect(wrapper.emitted('change').length).toEqual(1); - expect(wrapper.emitted('change')[0]).toEqual([true]); + expect(wrapper.emitted('change')!.length).toEqual(1); + expect(wrapper.emitted('change')![0]).toEqual([true]); await wrapper.setProps({ modelValue: true }); wrapper.trigger('click'); - expect(wrapper.emitted('change').length).toEqual(2); - expect(wrapper.emitted('change')[1]).toEqual([false]); + expect(wrapper.emitted('change')!.length).toEqual(2); + expect(wrapper.emitted('change')![1]).toEqual([false]); }); test('should not emit change event or update:modelValue event if disabled', async () => { @@ -107,5 +107,5 @@ test('should allow to custom active-value and inactive-value', () => { expect(wrapper.find('.van-switch--on').exists()).toBeTruthy(); wrapper.trigger('click'); - expect(wrapper.emitted('update:modelValue')[0]).toEqual(['off']); + expect(wrapper.emitted('update:modelValue')![0]).toEqual(['off']); }); diff --git a/src/tag/test/index.spec.ts b/src/tag/test/index.spec.ts index ad05a00d0..b8fc328a7 100644 --- a/src/tag/test/index.spec.ts +++ b/src/tag/test/index.spec.ts @@ -9,7 +9,7 @@ test('should emit close event when clicking the close icon', () => { }); wrapper.find('.van-tag__close').trigger('click'); - expect(wrapper.emitted('close').length).toEqual(1); + expect(wrapper.emitted('close')!.length).toEqual(1); }); test('should hide tag when the show prop is false', () => { diff --git a/src/toast/test/index.spec.ts b/src/toast/test/index.spec.ts index e6554b093..c5914d295 100644 --- a/src/toast/test/index.spec.ts +++ b/src/toast/test/index.spec.ts @@ -25,7 +25,7 @@ test('should close Toast when using closeOnClick prop and clicked', () => { }); wrapper.find('.van-toast').trigger('click'); - expect(wrapper.emitted('update:show')[0]).toEqual([false]); + expect(wrapper.emitted('update:show')![0]).toEqual([false]); }); test('should close Toast when using closeOnClickOverlay prop and overlay is clicked', () => { @@ -37,5 +37,5 @@ test('should close Toast when using closeOnClickOverlay prop and overlay is clic }); wrapper.find('.van-overlay').trigger('click'); - expect(wrapper.emitted('update:show')[0]).toEqual([false]); + expect(wrapper.emitted('update:show')![0]).toEqual([false]); }); diff --git a/yarn.lock b/yarn.lock index 8b249e50c..fc1c44964 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1020,27 +1020,27 @@ exec-sh "^0.3.2" minimist "^1.2.0" -"@docsearch/css@3.0.0-alpha.31": - version "3.0.0-alpha.31" - resolved "https://registry.npm.taobao.org/@docsearch/css/download/@docsearch/css-3.0.0-alpha.31.tgz#5fb8595201b3f120e5bc4ae4d536068b1a5ca695" - integrity sha1-X7hZUgGz8SDlvErk1TYGixpcppU= +"@docsearch/css@3.0.0-alpha.33": + version "3.0.0-alpha.33" + resolved "https://registry.npm.taobao.org/@docsearch/css/download/@docsearch/css-3.0.0-alpha.33.tgz#36c8d61ec001d678b501adf49117413dd9c41fa3" + integrity sha1-NsjWHsAB1ni1Aa30kRdBPdnEH6M= -"@docsearch/js@3.0.0-alpha.31": - version "3.0.0-alpha.31" - resolved "https://registry.npm.taobao.org/@docsearch/js/download/@docsearch/js-3.0.0-alpha.31.tgz#a180cb0b790682f41ac2a8e352e84bdd5a6a2807" - integrity sha1-oYDLC3kGgvQawqjjUuhL3VpqKAc= +"@docsearch/js@3.0.0-alpha.33": + version "3.0.0-alpha.33" + resolved "https://registry.npm.taobao.org/@docsearch/js/download/@docsearch/js-3.0.0-alpha.33.tgz#a836ea49d5120fd1858cf529f48fddfb0f3b0d31" + integrity sha1-qDbqSdUSD9GFjPUp9I/d+w87DTE= dependencies: - "@docsearch/react" "3.0.0-alpha.31" + "@docsearch/react" "3.0.0-alpha.33" preact "^10.0.0" -"@docsearch/react@3.0.0-alpha.31": - version "3.0.0-alpha.31" - resolved "https://registry.npm.taobao.org/@docsearch/react/download/@docsearch/react-3.0.0-alpha.31.tgz#3389cf4c7695e3a87a14b86e462ae08a8e08b84e" - integrity sha1-M4nPTHaV46h6FLhuRirgio4IuE4= +"@docsearch/react@3.0.0-alpha.33": + version "3.0.0-alpha.33" + resolved "https://registry.npm.taobao.org/@docsearch/react/download/@docsearch/react-3.0.0-alpha.33.tgz#2f8b5d90990b54b59db1a90e405d8008178e972a" + integrity sha1-L4tdkJkLVLWdsakOQF2ACBeOlyo= dependencies: "@algolia/autocomplete-core" "^1.0.0-alpha.35" "@algolia/autocomplete-preset-algolia" "^1.0.0-alpha.35" - "@docsearch/css" "3.0.0-alpha.31" + "@docsearch/css" "3.0.0-alpha.33" algoliasearch "^4.0.0" "@eslint/eslintrc@^0.2.2": @@ -1535,11 +1535,16 @@ "@types/estree" "*" "@types/json-schema" "*" -"@types/estree@*", "@types/estree@^0.0.45": +"@types/estree@*": version "0.0.45" resolved "https://registry.npm.taobao.org/@types/estree/download/@types/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" integrity sha1-6Th1cpmOXs2sIhlQ2rPow7Fq+IQ= +"@types/estree@^0.0.46": + version "0.0.46" + resolved "https://registry.npm.taobao.org/@types/estree/download/@types/estree-0.0.46.tgz?cache=0&sync_timestamp=1613378414725&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Festree%2Fdownload%2F%40types%2Festree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe" + integrity sha1-D7a/u+q9ejCIBQSZM2nEvx3qsf4= + "@types/express-serve-static-core@*": version "4.17.13" resolved "https://registry.npm.taobao.org/@types/express-serve-static-core/download/@types/express-serve-static-core-4.17.13.tgz?cache=0&sync_timestamp=1605053364166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fexpress-serve-static-core%2Fdownload%2F%40types%2Fexpress-serve-static-core-4.17.13.tgz#d9af025e925fc8b089be37423b8d1eac781be084" @@ -1619,7 +1624,7 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@^26.0.20": +"@types/jest@26.x", "@types/jest@^26.0.20": version "26.0.20" resolved "https://registry.npm.taobao.org/@types/jest/download/@types/jest-26.0.20.tgz#cd2f2702ecf69e86b586e1f5223a60e454056307" integrity sha1-zS8nAuz2noa1huH1Ijpg5FQFYwc= @@ -1721,6 +1726,16 @@ resolved "https://registry.npm.taobao.org/@types/stack-utils/download/@types/stack-utils-2.0.0.tgz?cache=0&sync_timestamp=1605057309059&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff" integrity sha1-cDZkC04hzC8lmugmzoQ9J32tjP8= +"@types/strip-bom@^3.0.0": + version "3.0.0" + resolved "https://registry.npm.taobao.org/@types/strip-bom/download/@types/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" + integrity sha1-FKjsOVbC6B7bdSB5CuzyHCkK69I= + +"@types/strip-json-comments@0.0.30": + version "0.0.30" + resolved "https://registry.npm.taobao.org/@types/strip-json-comments/download/@types/strip-json-comments-0.0.30.tgz#9aa30c04db212a9a0649d6ae6fd50accc40748a1" + integrity sha1-mqMMBNshKpoGSdaub9UKzMQHSKE= + "@types/tapable@*": version "1.0.6" resolved "https://registry.npm.taobao.org/@types/tapable/download/@types/tapable-1.0.6.tgz?cache=0&sync_timestamp=1605057883727&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Ftapable%2Fdownload%2F%40types%2Ftapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" @@ -1852,28 +1867,28 @@ "@typescript-eslint/types" "4.6.0" eslint-visitor-keys "^2.0.0" -"@vant/cli@^3.4.1": - version "3.4.1" - resolved "https://registry.npmjs.org/@vant/cli/-/cli-3.4.1.tgz#5d13f121bc3d6dd451c1bbf576fbf8556c67f243" - integrity sha512-gI60PzajghXGUl1v2Y0Lw2nHdrk7TyMPST/ICDXifiXjW1j40PTe2e+WHIT3afofWrUwY8K7wgy3Ve+AQX447Q== +"@vant/cli@^3.5.1": + version "3.5.1" + resolved "https://registry.npm.taobao.org/@vant/cli/download/@vant/cli-3.5.1.tgz?cache=0&sync_timestamp=1614305646828&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vant%2Fcli%2Fdownload%2F%40vant%2Fcli-3.5.1.tgz#98ea3ad5de93a4b8b9dc2310b8b74a535d0e34fb" + integrity sha1-mOo61d6TpLi53CMQuLdKU10ONPs= dependencies: "@babel/core" "^7.12.10" "@babel/plugin-transform-object-assign" "^7.12.1" "@babel/plugin-transform-runtime" "^7.12.10" "@babel/preset-env" "^7.12.11" "@babel/preset-typescript" "^7.12.7" - "@docsearch/css" "3.0.0-alpha.31" - "@docsearch/js" "3.0.0-alpha.31" + "@docsearch/css" "3.0.0-alpha.33" + "@docsearch/js" "3.0.0-alpha.33" "@nuxt/friendly-errors-webpack-plugin" "^2.5.0" "@types/jest" "^26.0.20" "@types/webpack-dev-server" "^3.11.1" - "@vant/eslint-config" "^3.0.3" + "@vant/eslint-config" "^3.1.0" "@vant/markdown-loader" "^3.0.2" "@vant/markdown-vetur" "^2.0.2" "@vant/stylelint-config" "^1.4.2" "@vant/touch-emulator" "^1.2.0" "@vue/babel-plugin-jsx" "^1.0.1" - "@vue/test-utils" "2.0.0-beta.13" + "@vue/test-utils" "2.0.0-rc.1" address "^1.1.2" autoprefixer "^9.0.0" babel-jest "^26.6.3" @@ -1890,7 +1905,7 @@ fork-ts-checker-webpack-plugin "^6.1.0" gh-pages "^3.1.0" hash-sum "^2.0.0" - html-webpack-plugin "^5.0.0-alpha.14" + html-webpack-plugin "^5.2.0" husky "^4.3.7" jest "^26.6.3" jest-canvas-mock "^2.3.0" @@ -1910,25 +1925,27 @@ sass-loader "^10.1.1" style-loader "^2.0.0" stylelint "^13.8.0" + ts-jest "^26.5.2" typescript "^4.1.3" - vue-jest "^5.0.0-alpha.7" + vue-jest "^5.0.0-alpha.8" vue-loader "^16.1.2" vue-router "^4.0.0" - webpack "^5.13.0" - webpack-dev-server "^3.4.0" + webpack "^5.24.1" + webpack-dev-server "^3.11.0" webpack-merge "^5.7.3" webpackbar "^5.0.0-3" -"@vant/eslint-config@^3.0.3": - version "3.0.3" - resolved "https://registry.npm.taobao.org/@vant/eslint-config/download/@vant/eslint-config-3.0.3.tgz#c3b5a4f87a03757b42eedff147132ed2231b7d69" - integrity sha1-w7Wk+HoDdXtC7t/xRxMu0iMbfWk= +"@vant/eslint-config@^3.1.0": + version "3.1.0" + resolved "https://registry.npm.taobao.org/@vant/eslint-config/download/@vant/eslint-config-3.1.0.tgz#f5cc4104cd72e2e643975bc229b4222c983ec304" + integrity sha1-9cxBBM1y4uZDl1vCKbQiLJg+wwQ= dependencies: "@typescript-eslint/eslint-plugin" "^4.6.0" "@typescript-eslint/parser" "^4.6.0" eslint-config-airbnb-base "^14.2.0" eslint-config-prettier "^6.15.0" eslint-plugin-import "^2.22.1" + eslint-plugin-markdown "^2.0.0" eslint-plugin-vue "^7.1.0" "@vant/icons@^1.5.3": @@ -2086,10 +2103,10 @@ resolved "https://registry.npm.taobao.org/@vue/shared/download/@vue/shared-3.0.6.tgz?cache=0&sync_timestamp=1614200563623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fshared%2Fdownload%2F%40vue%2Fshared-3.0.6.tgz#d65576430fc4ad383dc7c829118798e5169178d4" integrity sha1-1lV2Qw/ErTg9x8gpEYeY5RaReNQ= -"@vue/test-utils@2.0.0-beta.13": - version "2.0.0-beta.13" - resolved "https://registry.npm.taobao.org/@vue/test-utils/download/@vue/test-utils-2.0.0-beta.13.tgz?cache=0&sync_timestamp=1610023258877&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Ftest-utils%2Fdownload%2F%40vue%2Ftest-utils-2.0.0-beta.13.tgz#482aa29f4e80a713e03e22b736d7465d56909e66" - integrity sha1-SCqin06ApxPgPiK3NtdGXVaQnmY= +"@vue/test-utils@2.0.0-rc.1": + version "2.0.0-rc.1" + resolved "https://registry.npm.taobao.org/@vue/test-utils/download/@vue/test-utils-2.0.0-rc.1.tgz?cache=0&sync_timestamp=1613347838079&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Ftest-utils%2Fdownload%2F%40vue%2Ftest-utils-2.0.0-rc.1.tgz#cc462997b50dc07d73dee151da0cbb1c39a40a5a" + integrity sha1-zEYpl7UNwH1z3uFR2gy7HDmkClo= "@webassemblyjs/ast@1.11.0": version "1.11.0" @@ -2857,8 +2874,8 @@ browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.0: bs-logger@0.x: version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + resolved "https://registry.npm.taobao.org/bs-logger/download/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha1-6302UwenLPl0zGzadraDVK0za9g= dependencies: fast-json-stable-stringify "2.x" @@ -3236,6 +3253,11 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= +collapse-white-space@^1.0.2: + version "1.0.6" + resolved "https://registry.npm.taobao.org/collapse-white-space/download/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" + integrity sha1-5jYpwAFmZXkgYNu+t5xCI50sUoc= + collect-v8-coverage@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.0.tgz#150ee634ac3650b71d9c985eb7f608942334feb1" @@ -4124,10 +4146,10 @@ end-of-stream@^1.1.0: dependencies: once "^1.4.0" -enhanced-resolve@^5.6.0: - version "5.6.0" - resolved "https://registry.npm.taobao.org/enhanced-resolve/download/enhanced-resolve-5.6.0.tgz?cache=0&sync_timestamp=1610396726619&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-5.6.0.tgz#ad19a1665f230a6e384724a30acf3f7332b2b3f0" - integrity sha1-rRmhZl8jCm44RySjCs8/czKys/A= +enhanced-resolve@^5.7.0: + version "5.7.0" + resolved "https://registry.npm.taobao.org/enhanced-resolve/download/enhanced-resolve-5.7.0.tgz?cache=0&sync_timestamp=1610568507654&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-5.7.0.tgz#525c5d856680fbd5052de453ac83e32049958b5c" + integrity sha1-UlxdhWaA+9UFLeRTrIPjIEmVi1w= dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -4194,6 +4216,11 @@ es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: string.prototype.trimend "^1.0.1" string.prototype.trimstart "^1.0.1" +es-module-lexer@^0.4.0: + version "0.4.0" + resolved "https://registry.npm.taobao.org/es-module-lexer/download/es-module-lexer-0.4.0.tgz#21f4181cc8b7eee06855f1c59e6087c7bc4f77b0" + integrity sha1-IfQYHMi37uBoVfHFnmCHx7xPd7A= + es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" @@ -4291,6 +4318,14 @@ eslint-plugin-import@^2.22.1: resolve "^1.17.0" tsconfig-paths "^3.9.0" +eslint-plugin-markdown@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.taobao.org/eslint-plugin-markdown/download/eslint-plugin-markdown-2.0.0.tgz#cd650beda2b599cd9e4535ea369266b5d0e49d23" + integrity sha1-zWUL7aK1mc2eRTXqNpJmtdDknSM= + dependencies: + remark-parse "^5.0.0" + unified "^6.1.2" + eslint-plugin-vue@^7.1.0: version "7.1.0" resolved "https://registry.npm.taobao.org/eslint-plugin-vue/download/eslint-plugin-vue-7.1.0.tgz?cache=0&sync_timestamp=1603027118070&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-vue%2Fdownload%2Feslint-plugin-vue-7.1.0.tgz#832d83e4e1e480c7285b2bc3ff1076cd0dca7a5b" @@ -5393,17 +5428,17 @@ html-tags@^3.1.0: resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== -html-webpack-plugin@^5.0.0-alpha.14: - version "5.0.0-alpha.17" - resolved "https://registry.npm.taobao.org/html-webpack-plugin/download/html-webpack-plugin-5.0.0-alpha.17.tgz#42598fe4609efad3725c26d085c9d64197fa1587" - integrity sha1-QlmP5GCe+tNyXCbQhcnWQZf6FYc= +html-webpack-plugin@^5.2.0: + version "5.2.0" + resolved "https://registry.npm.taobao.org/html-webpack-plugin/download/html-webpack-plugin-5.2.0.tgz?cache=0&sync_timestamp=1613744691795&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhtml-webpack-plugin%2Fdownload%2Fhtml-webpack-plugin-5.2.0.tgz#d675ad0027a89de6b3d9950e0b57656dcfd97fbf" + integrity sha1-1nWtACeoneaz2ZUOC1dlbc/Zf78= dependencies: "@types/html-minifier-terser" "^5.0.0" html-minifier-terser "^5.0.1" - loader-utils "2.0.0" + loader-utils "^2.0.0" lodash "^4.17.20" pretty-error "^2.1.1" - tapable "2.0.0" + tapable "^2.0.0" htmlparser2@^3.10.0, htmlparser2@^3.3.0, htmlparser2@^3.9.2: version "3.10.1" @@ -5656,7 +5691,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: +inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -5774,7 +5809,7 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-buffer@^1.1.5: +is-buffer@^1.1.4, is-buffer@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== @@ -6072,11 +6107,21 @@ is-what@^3.7.1: resolved "https://registry.npm.taobao.org/is-what/download/is-what-3.12.0.tgz?cache=0&sync_timestamp=1605079638099&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-what%2Fdownload%2Fis-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55" integrity sha1-9EBc5L1t1CDTztUaAm+5DgNwXlU= +is-whitespace-character@^1.0.0: + version "1.0.4" + resolved "https://registry.npm.taobao.org/is-whitespace-character/download/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" + integrity sha1-CFjt2UqVWUx8ndC1wXTsbkXuSqc= + is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== +is-word-character@^1.0.0: + version "1.0.4" + resolved "https://registry.npm.taobao.org/is-word-character/download/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" + integrity sha1-zg5zIW+YWZBgWS9i/zE1TdvrAjA= + is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" @@ -6500,7 +6545,7 @@ jest-snapshot@^26.6.2: pretty-format "^26.6.2" semver "^7.3.2" -jest-util@^26.6.2: +jest-util@^26.1.0, jest-util@^26.6.2: version "26.6.2" resolved "https://registry.npm.taobao.org/jest-util/download/jest-util-26.6.2.tgz?cache=0&sync_timestamp=1604321502822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-util%2Fdownload%2Fjest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1" integrity sha1-kHU12+TVpstMR6ybkm9q8pV2y8E= @@ -6665,10 +6710,10 @@ json3@^3.3.3: resolved "https://registry.npm.taobao.org/json3/download/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" integrity sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E= -json5@2.x, json5@^2.1.2: - version "2.1.2" - resolved "https://registry.npm.taobao.org/json5/download/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e" - integrity sha1-Q+8fCvmDXdYkdRprf6SIdPstYI4= +json5@2.x: + version "2.2.0" + resolved "https://registry.npm.taobao.org/json5/download/json5-2.2.0.tgz?cache=0&sync_timestamp=1612146079519&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjson5%2Fdownload%2Fjson5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" + integrity sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM= dependencies: minimist "^1.2.5" @@ -6679,6 +6724,13 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" +json5@^2.1.2: + version "2.1.2" + resolved "https://registry.npm.taobao.org/json5/download/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e" + integrity sha1-Q+8fCvmDXdYkdRprf6SIdPstYI4= + dependencies: + minimist "^1.2.5" + jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -6905,15 +6957,6 @@ loader-runner@^4.2.0: resolved "https://registry.npm.taobao.org/loader-runner/download/loader-runner-4.2.0.tgz?cache=0&sync_timestamp=1610027938815&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-runner%2Fdownload%2Floader-runner-4.2.0.tgz#d7022380d66d14c5fb1d496b89864ebcfd478384" integrity sha1-1wIjgNZtFMX7HUlriYZOvP1Hg4Q= -loader-utils@2.0.0, loader-utils@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" - integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - loader-utils@^1.1.0, loader-utils@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" @@ -6923,6 +6966,15 @@ loader-utils@^1.1.0, loader-utils@^1.4.0: emojis-list "^3.0.0" json5 "^1.0.1" +loader-utils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" + integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -6968,11 +7020,6 @@ lodash.ismatch@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= - lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -6998,6 +7045,11 @@ lodash@4.17.20, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17. resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.20.tgz?cache=0&sync_timestamp=1597336097104&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha1-tEqbYpe8tpjxxRo1RaKzs2jVnFI= +lodash@4.x: + version "4.17.21" + resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1613835817439&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw= + log-symbols@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" @@ -7093,8 +7145,8 @@ make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: make-error@1.x: version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + resolved "https://registry.npm.taobao.org/make-error/download/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha1-LrLjfqm2fEiR9oShOUeZr0hM96I= makeerror@1.0.x: version "1.0.11" @@ -7130,6 +7182,11 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" +markdown-escapes@^1.0.0: + version "1.0.4" + resolved "https://registry.npm.taobao.org/markdown-escapes/download/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" + integrity sha1-yVQV70UUmddgK5EJXzyOiXX3hTU= + markdown-it-anchor@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-6.0.0.tgz#2ec2554fa4d065f2d1ca2422a50c14c10cf67c2a" @@ -7397,7 +7454,12 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" -mkdirp@0.x, mkdirp@^0.5.1, mkdirp@^0.5.5: +mkdirp@1.x: + version "1.0.4" + resolved "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha1-PrXtYmInVteaXw4qIh3+utdcL34= + +mkdirp@^0.5.1, mkdirp@^0.5.5: version "0.5.5" resolved "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" integrity sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8= @@ -7978,6 +8040,18 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parse-entities@^1.1.0: + version "1.2.2" + resolved "https://registry.npm.taobao.org/parse-entities/download/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50" + integrity sha1-wxvw9lO2ZhNU+Jc1WcuG3R1e31A= + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + parse-entities@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" @@ -8893,6 +8967,27 @@ release-it@^14.2.2: yaml "1.10.0" yargs-parser "20.2.4" +remark-parse@^5.0.0: + version "5.0.0" + resolved "https://registry.npm.taobao.org/remark-parse/download/remark-parse-5.0.0.tgz?cache=0&sync_timestamp=1602663872721&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fremark-parse%2Fdownload%2Fremark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95" + integrity sha1-TAd/nkmQRNHVwT+A16mM97koXZU= + dependencies: + collapse-white-space "^1.0.2" + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + is-word-character "^1.0.0" + markdown-escapes "^1.0.0" + parse-entities "^1.1.0" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + trim "0.0.1" + trim-trailing-lines "^1.0.0" + unherit "^1.0.4" + unist-util-remove-position "^1.0.0" + vfile-location "^2.0.0" + xtend "^4.0.1" + remark-parse@^9.0.0: version "9.0.0" resolved "https://registry.npm.taobao.org/remark-parse/download/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" @@ -8937,7 +9032,7 @@ repeat-element@^1.1.2: resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== -repeat-string@^1.0.0, repeat-string@^1.6.1: +repeat-string@^1.0.0, repeat-string@^1.5.4, repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= @@ -9055,7 +9150,7 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= -resolve@1.x, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.18.1: +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.18.1: version "1.19.0" resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.19.0.tgz?cache=0&sync_timestamp=1605051995154&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" integrity sha1-GvW/YwQJc0oGfK4pMYqsf6KaJnw= @@ -9270,7 +9365,7 @@ semver-regex@^3.1.2: resolved "https://registry.npm.taobao.org/semver-regex/download/semver-regex-3.1.2.tgz#34b4c0d361eef262e07199dbef316d0f2ab11807" integrity sha1-NLTA02Hu8mLgcZnb7zFtDyqxGAc= -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -9285,6 +9380,13 @@ semver@7.3.2, semver@^7.2.1, semver@^7.3.2: resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== +semver@7.x: + version "7.3.4" + resolved "https://registry.npm.taobao.org/semver/download/semver-7.3.4.tgz?cache=0&sync_timestamp=1606854493763&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" + integrity sha1-J6qn0uTKdkUvmNOt0JOnLJQ+3Jc= + dependencies: + lru-cache "^6.0.0" + semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" @@ -9656,6 +9758,11 @@ stackframe@^1.1.1: resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.1.1.tgz#ffef0a3318b1b60c3b58564989aca5660729ec71" integrity sha512-0PlYhdKh6AfFxRyK/v+6/k+/mMfyiEBbTM5L94D0ZytQnJ166wuwoTYLHFWGbs2dpA8Rgq763KGWmN1EQEYHRQ== +state-toggle@^1.0.0: + version "1.0.3" + resolved "https://registry.npm.taobao.org/state-toggle/download/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" + integrity sha1-4SOxaojhQxObCcaFIiG8mBWRff4= + static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" @@ -9843,16 +9950,16 @@ strip-indent@^3.0.0: dependencies: min-indent "^1.0.0" +strip-json-comments@^2.0.0, strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - strip-outer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" @@ -10005,17 +10112,12 @@ table@^6.0.3, table@^6.0.4: slice-ansi "^4.0.0" string-width "^4.2.0" -tapable@2.0.0: - version "2.0.0" - resolved "https://registry.npm.taobao.org/tapable/download/tapable-2.0.0.tgz?cache=0&sync_timestamp=1607088902003&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftapable%2Fdownload%2Ftapable-2.0.0.tgz#a49c3d6a8a2bb606e7db372b82904c970d537a08" - integrity sha1-pJw9aoortgbn2zcrgpBMlw1Tegg= - tapable@^1.0.0: version "1.1.3" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tapable@^2.1.1, tapable@^2.2.0: +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: version "2.2.0" resolved "https://registry.npm.taobao.org/tapable/download/tapable-2.2.0.tgz?cache=0&sync_timestamp=1607088902003&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftapable%2Fdownload%2Ftapable-2.2.0.tgz#5c373d281d9c672848213d0e037d1c4165ab426b" integrity sha1-XDc9KB2cZyhIIT0OA30cQWWrQms= @@ -10229,26 +10331,37 @@ trim-repeated@^1.0.0: dependencies: escape-string-regexp "^1.0.2" +trim-trailing-lines@^1.0.0: + version "1.1.4" + resolved "https://registry.npm.taobao.org/trim-trailing-lines/download/trim-trailing-lines-1.1.4.tgz?cache=0&sync_timestamp=1603876381560&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftrim-trailing-lines%2Fdownload%2Ftrim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" + integrity sha1-vUq77HzIgEYvELLItc4djR7HwsA= + +trim@0.0.1: + version "0.0.1" + resolved "https://registry.npm.taobao.org/trim/download/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" + integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0= + trough@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== -ts-jest@^24.0.0: - version "24.3.0" - resolved "https://registry.npm.taobao.org/ts-jest/download/ts-jest-24.3.0.tgz?cache=0&sync_timestamp=1606405640935&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fts-jest%2Fdownload%2Fts-jest-24.3.0.tgz#b97814e3eab359ea840a1ac112deae68aa440869" - integrity sha1-uXgU4+qzWeqEChrBEt6uaKpECGk= +ts-jest@^26.5.2: + version "26.5.2" + resolved "https://registry.npm.taobao.org/ts-jest/download/ts-jest-26.5.2.tgz#5281d6b44c2f94f71205728a389edc3d7995b0c4" + integrity sha1-UoHWtEwvlPcSBXKKOJ7cPXmVsMQ= dependencies: + "@types/jest" "26.x" bs-logger "0.x" buffer-from "1.x" fast-json-stable-stringify "2.x" + jest-util "^26.1.0" json5 "2.x" - lodash.memoize "4.x" + lodash "4.x" make-error "1.x" - mkdirp "0.x" - resolve "1.x" - semver "^5.5" - yargs-parser "10.x" + mkdirp "1.x" + semver "7.x" + yargs-parser "20.x" tsconfig-paths@^3.9.0: version "3.9.0" @@ -10260,6 +10373,16 @@ tsconfig-paths@^3.9.0: minimist "^1.2.0" strip-bom "^3.0.0" +tsconfig@^7.0.0: + version "7.0.0" + resolved "https://registry.npm.taobao.org/tsconfig/download/tsconfig-7.0.0.tgz#84538875a4dc216e5c4a5432b3a4dec3d54e91b7" + integrity sha1-hFOIdaTcIW5cSlQys6Tew9VOkbc= + dependencies: + "@types/strip-bom" "^3.0.0" + "@types/strip-json-comments" "0.0.30" + strip-bom "^3.0.0" + strip-json-comments "^2.0.0" + tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: version "1.11.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" @@ -10356,6 +10479,14 @@ uglify-js@^3.1.4: commander "~2.20.3" source-map "~0.6.1" +unherit@^1.0.4: + version "1.1.3" + resolved "https://registry.npm.taobao.org/unherit/download/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" + integrity sha1-bJtQPytBsmIzDIDpHIYUq9qmnCI= + dependencies: + inherits "^2.0.0" + xtend "^4.0.0" + unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" @@ -10379,6 +10510,18 @@ unicode-property-aliases-ecmascript@^1.0.4: resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== +unified@^6.1.2: + version "6.2.0" + resolved "https://registry.npm.taobao.org/unified/download/unified-6.2.0.tgz?cache=0&sync_timestamp=1614242632931&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funified%2Fdownload%2Funified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba" + integrity sha1-f71jD3GRJtZ9QMZEt+P2FwNfbbo= + dependencies: + bail "^1.0.0" + extend "^3.0.0" + is-plain-obj "^1.1.0" + trough "^1.0.0" + vfile "^2.0.0" + x-is-string "^0.1.0" + unified@^9.1.0: version "9.2.0" resolved "https://registry.npm.taobao.org/unified/download/unified-9.2.0.tgz?cache=0&sync_timestamp=1598033493742&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funified%2Fdownload%2Funified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8" @@ -10420,11 +10563,28 @@ unist-util-find-all-after@^3.0.2: dependencies: unist-util-is "^4.0.0" +unist-util-is@^3.0.0: + version "3.0.0" + resolved "https://registry.npm.taobao.org/unist-util-is/download/unist-util-is-3.0.0.tgz?cache=0&sync_timestamp=1606662976542&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funist-util-is%2Fdownload%2Funist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd" + integrity sha1-2ehDgcJGjoJinkpb6dfQWi3TJM0= + unist-util-is@^4.0.0: version "4.0.2" resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.2.tgz#c7d1341188aa9ce5b3cff538958de9895f14a5de" integrity sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ== +unist-util-remove-position@^1.0.0: + version "1.1.4" + resolved "https://registry.npm.taobao.org/unist-util-remove-position/download/unist-util-remove-position-1.1.4.tgz#ec037348b6102c897703eee6d0294ca4755a2020" + integrity sha1-7ANzSLYQLIl3A+7m0ClMpHVaICA= + dependencies: + unist-util-visit "^1.1.0" + +unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1: + version "1.1.2" + resolved "https://registry.npm.taobao.org/unist-util-stringify-position/download/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6" + integrity sha1-Pzf881EnncvKdICrWIm7ioMu4cY= + unist-util-stringify-position@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" @@ -10432,6 +10592,20 @@ unist-util-stringify-position@^2.0.0: dependencies: "@types/unist" "^2.0.2" +unist-util-visit-parents@^2.0.0: + version "2.1.2" + resolved "https://registry.npm.taobao.org/unist-util-visit-parents/download/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9" + integrity sha1-JeQ+VTEhZvM0jK5nQ1iHgdESwek= + dependencies: + unist-util-is "^3.0.0" + +unist-util-visit@^1.1.0: + version "1.4.1" + resolved "https://registry.npm.taobao.org/unist-util-visit/download/unist-util-visit-1.4.1.tgz#4724aaa8486e6ee6e26d7ff3c8685960d560b1e3" + integrity sha1-RySqqEhububibX/zyGhZYNVgseM= + dependencies: + unist-util-visit-parents "^2.0.0" + universal-user-agent@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-4.0.1.tgz#fd8d6cb773a679a709e967ef8288a31fcc03e557" @@ -10605,6 +10779,18 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +vfile-location@^2.0.0: + version "2.0.6" + resolved "https://registry.npm.taobao.org/vfile-location/download/vfile-location-2.0.6.tgz?cache=0&sync_timestamp=1604225085911&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvfile-location%2Fdownload%2Fvfile-location-2.0.6.tgz#8a274f39411b8719ea5728802e10d9e0dff1519e" + integrity sha1-iidPOUEbhxnqVyiALhDZ4N/xUZ4= + +vfile-message@^1.0.0: + version "1.1.1" + resolved "https://registry.npm.taobao.org/vfile-message/download/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1" + integrity sha1-WDOuB4od+i2W6WR4hs0ymTqzE+E= + dependencies: + unist-util-stringify-position "^1.1.1" + vfile-message@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" @@ -10613,6 +10799,16 @@ vfile-message@^2.0.0: "@types/unist" "^2.0.0" unist-util-stringify-position "^2.0.0" +vfile@^2.0.0: + version "2.3.0" + resolved "https://registry.npm.taobao.org/vfile/download/vfile-2.3.0.tgz?cache=0&sync_timestamp=1607256217448&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvfile%2Fdownload%2Fvfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a" + integrity sha1-5i2OcrIOg8MkvGxnJ47ickiL+Eo= + dependencies: + is-buffer "^1.1.4" + replace-ext "1.0.0" + unist-util-stringify-position "^1.0.0" + vfile-message "^1.0.0" + vfile@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.1.0.tgz#d79248957f43225d57ff67a56effc67bef08946e" @@ -10636,16 +10832,16 @@ vue-eslint-parser@^7.1.1: esquery "^1.0.1" lodash "^4.17.15" -vue-jest@^5.0.0-alpha.7: - version "5.0.0-alpha.7" - resolved "https://registry.npm.taobao.org/vue-jest/download/vue-jest-5.0.0-alpha.7.tgz?cache=0&sync_timestamp=1606792266791&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-jest%2Fdownload%2Fvue-jest-5.0.0-alpha.7.tgz#e5a1eb376afae4a5b4b207218befc3614369eaa9" - integrity sha1-5aHrN2r65KW0sgchi+/DYUNp6qk= +vue-jest@^5.0.0-alpha.8: + version "5.0.0-alpha.8" + resolved "https://registry.npm.taobao.org/vue-jest/download/vue-jest-5.0.0-alpha.8.tgz?cache=0&sync_timestamp=1610927852246&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-jest%2Fdownload%2Fvue-jest-5.0.0-alpha.8.tgz#45b12335dbb73c9ab8309f1e24b2fc8781d519f9" + integrity sha1-RbEjNdu3PJq4MJ8eJLL8h4HVGfk= dependencies: "@babel/plugin-transform-modules-commonjs" "^7.2.0" chalk "^2.1.0" convert-source-map "^1.6.0" extract-from-css "^0.4.4" - ts-jest "^24.0.0" + tsconfig "^7.0.0" vue-loader@^16.1.2: version "16.1.2" @@ -10734,10 +10930,10 @@ webpack-dev-middleware@^3.7.2: range-parser "^1.2.1" webpack-log "^2.0.0" -webpack-dev-server@^3.4.0: +webpack-dev-server@^3.11.0: version "3.11.2" - resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz#695ebced76a4929f0d5de7fd73fafe185fe33708" - integrity sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ== + resolved "https://registry.npm.taobao.org/webpack-dev-server/download/webpack-dev-server-3.11.2.tgz?cache=0&sync_timestamp=1610550019218&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack-dev-server%2Fdownload%2Fwebpack-dev-server-3.11.2.tgz#695ebced76a4929f0d5de7fd73fafe185fe33708" + integrity sha1-aV687Xakkp8NXef9c/r+GF/jNwg= dependencies: ansi-html "0.0.7" bonjour "^3.5.0" @@ -10797,20 +10993,21 @@ webpack-sources@^2.1.1: source-list-map "^2.0.1" source-map "^0.6.1" -webpack@^5.13.0: - version "5.13.0" - resolved "https://registry.npm.taobao.org/webpack/download/webpack-5.13.0.tgz?cache=0&sync_timestamp=1610402517235&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack%2Fdownload%2Fwebpack-5.13.0.tgz#275351b043bd212562f4390e903619d07d5a2fcf" - integrity sha1-J1NRsEO9ISVi9DkOkDYZ0H1aL88= +webpack@^5.24.1: + version "5.24.2" + resolved "https://registry.npm.taobao.org/webpack/download/webpack-5.24.2.tgz?cache=0&sync_timestamp=1614198238337&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack%2Fdownload%2Fwebpack-5.24.2.tgz#33790dad631e8b639f4246d762e257720875fe54" + integrity sha1-M3kNrWMei2OfQkbXYuJXcgh1/lQ= dependencies: "@types/eslint-scope" "^3.7.0" - "@types/estree" "^0.0.45" + "@types/estree" "^0.0.46" "@webassemblyjs/ast" "1.11.0" "@webassemblyjs/wasm-edit" "1.11.0" "@webassemblyjs/wasm-parser" "1.11.0" acorn "^8.0.4" browserslist "^4.14.5" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.6.0" + enhanced-resolve "^5.7.0" + es-module-lexer "^0.4.0" eslint-scope "^5.1.1" events "^3.2.0" glob-to-regexp "^0.4.1" @@ -10819,7 +11016,6 @@ webpack@^5.13.0: loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - pkg-dir "^5.0.0" schema-utils "^3.0.0" tapable "^2.1.1" terser-webpack-plugin "^5.1.1" @@ -10989,6 +11185,11 @@ ws@^7.2.3: resolved "https://registry.npm.taobao.org/ws/download/ws-7.4.2.tgz?cache=0&sync_timestamp=1609271318119&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fws%2Fdownload%2Fws-7.4.2.tgz#782100048e54eb36fe9843363ab1c68672b261dd" integrity sha1-eCEABI5U6zb+mEM2OrHGhnKyYd0= +x-is-string@^0.1.0: + version "0.1.0" + resolved "https://registry.npm.taobao.org/x-is-string/download/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" + integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI= + xdg-basedir@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" @@ -11004,7 +11205,7 @@ xmlchars@^2.2.0: resolved "https://registry.npm.taobao.org/xmlchars/download/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" integrity sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs= -xtend@~4.0.1: +xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== @@ -11029,18 +11230,16 @@ yaml@1.10.0, yaml@^1.10.0, yaml@^1.7.2: resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== -yargs-parser@10.x: - version "10.1.0" - resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-10.1.0.tgz?cache=0&sync_timestamp=1604886694625&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" - integrity sha1-cgImW4n36eny5XZeD+c1qQXtuqg= - dependencies: - camelcase "^4.1.0" - yargs-parser@20.2.4, yargs-parser@^20.2.3: version "20.2.4" resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" integrity sha1-tCiQ8UVmeW+Fro46JSkNIF8VSlQ= +yargs-parser@20.x: + version "20.2.6" + resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.6.tgz#69f920addf61aafc0b8b89002f5d66e28f2d8b20" + integrity sha1-afkgrd9hqvwLi4kAL11m4o8tiyA= + yargs-parser@^13.1.2: version "13.1.2" resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"