Skip to content

Commit a8524a1

Browse files
committed
fix: incorrect shared type import in rules
1 parent 97cebd8 commit a8524a1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/beige-mirrors-smoke.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@vee-validate/rules": patch
3+
---
4+
5+
fix: incorrect shared type import in rules

packages/rules/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import required from './required';
2626
import size from './size';
2727
import url from './url';
2828
import { toTypedSchema } from './toTypedSchema';
29-
import { SimpleValidationRuleFunction } from 'packages/shared';
29+
import { SimpleValidationRuleFunction } from '../../shared/types';
3030

3131
export const all: Record<string, SimpleValidationRuleFunction<any, any>> = {
3232
alpha_dash,

0 commit comments

Comments
 (0)