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