mirror of https://github.com/vuejs/core.git
chore: fix ci
This commit is contained in:
parent
ba0594de0b
commit
a2b320bca7
|
@ -10,7 +10,7 @@ export type VaporDirective = (
|
||||||
modifiers?: DirectiveModifiers,
|
modifiers?: DirectiveModifiers,
|
||||||
) => (() => void) | void
|
) => (() => void) | void
|
||||||
|
|
||||||
type DirectiveArguments = Array<
|
type VaporDirectiveArguments = Array<
|
||||||
| [VaporDirective | undefined]
|
| [VaporDirective | undefined]
|
||||||
| [VaporDirective | undefined, () => any]
|
| [VaporDirective | undefined, () => any]
|
||||||
| [VaporDirective | undefined, () => any, argument: string]
|
| [VaporDirective | undefined, () => any, argument: string]
|
||||||
|
@ -24,7 +24,7 @@ type DirectiveArguments = Array<
|
||||||
|
|
||||||
export function withVaporDirectives(
|
export function withVaporDirectives(
|
||||||
node: Element | VaporComponentInstance,
|
node: Element | VaporComponentInstance,
|
||||||
dirs: DirectiveArguments,
|
dirs: VaporDirectiveArguments,
|
||||||
): void {
|
): void {
|
||||||
// TODO handle custom directive on component
|
// TODO handle custom directive on component
|
||||||
for (const [dir, value, argument, modifiers] of dirs) {
|
for (const [dir, value, argument, modifiers] of dirs) {
|
||||||
|
|
|
@ -223,8 +223,6 @@ importers:
|
||||||
specifier: workspace:*
|
specifier: workspace:*
|
||||||
version: link:../../packages/vue
|
version: link:../../packages/vue
|
||||||
|
|
||||||
packages-private/e2e-utils: {}
|
|
||||||
|
|
||||||
packages-private/local-playground:
|
packages-private/local-playground:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vueuse/core':
|
'@vueuse/core':
|
||||||
|
|
|
@ -80,6 +80,7 @@ export default defineConfig({
|
||||||
extends: true,
|
extends: true,
|
||||||
test: {
|
test: {
|
||||||
name: 'e2e',
|
name: 'e2e',
|
||||||
|
environment: 'jsdom',
|
||||||
poolOptions: {
|
poolOptions: {
|
||||||
threads: {
|
threads: {
|
||||||
singleThread: !!process.env.CI,
|
singleThread: !!process.env.CI,
|
||||||
|
|
Loading…
Reference in New Issue