]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
refactor: rename matcher-pattern
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 9 Dec 2024 21:20:06 +0000 (22:20 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 9 Dec 2024 21:20:06 +0000 (22:20 +0100)
packages/router/src/new-route-resolver/matcher-pattern.ts [moved from packages/router/src/new-route-resolver/new-matcher-pattern.ts with 100% similarity]
packages/router/src/new-route-resolver/matcher.spec.ts
packages/router/src/new-route-resolver/matcher.ts

index f368647c83fc6d5ecb11a250aa9f3c3d01e29ae3..15ca09f832d1aa1d1d7060714e670f624bd56a5a 100644 (file)
@@ -5,7 +5,7 @@ import {
   MatcherPattern,
   MatcherPatternPath,
   MatcherPatternQuery,
-} from './new-matcher-pattern'
+} from './matcher-pattern'
 import { miss } from './matchers/errors'
 import { EmptyParams } from './matcher-location'
 
index 11cf6b0987a46433429658057b68792793aefea4..26805ddaf053c37e8adec4aa6e53e4dbd137a59a 100644 (file)
@@ -9,7 +9,7 @@ import type {
   MatcherPatternHash,
   MatcherPatternPath,
   MatcherPatternQuery,
-} from './new-matcher-pattern'
+} from './matcher-pattern'
 import { warn } from '../warning'
 import { encodeQueryValue as _encodeQueryValue } from '../encoding'
 import { parseURL, stringifyURL } from '../location'