Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "unrouting",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.3.0",
"packageManager": "pnpm@10.6.5",
"description": "",
"license": "MIT",
"repository": "unjs/unrouting",
@@ -34,9 +34,9 @@
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@types/node": "20.12.11",
"@types/node": "20.17.25",
"@vitest/coverage-v8": "latest",
"bumpp": "9.4.1",
"bumpp": "9.11.1",
"eslint": "latest",
"lint-staged": "latest",
"radix3": "1.1.2",
@@ -45,7 +45,7 @@
"unbuild": "latest",
"vite": "latest",
"vitest": "latest",
"vue-router": "4.3.2"
"vue-router": "4.5.0"
},
"resolutions": {
"unrouting": "link:."
5,555 changes: 2,887 additions & 2,668 deletions pnpm-lock.yaml

Large diffs are not rendered by default.


Unchanged files with check annotations Beta

import { describe, expect, it } from 'vitest'
import { createRouter as createRadixRouter } from 'radix3'

Check failure on line 2 in test/unit/converters.spec.ts

GitHub Actions / lint

Expected "radix3" to come before "vitest"

Check failure on line 2 in test/unit/converters.spec.ts

GitHub Actions / lint

Expected "radix3" to come before "vitest"
import { createMemoryHistory, createRouter as createVueRouter } from 'vue-router'
import { toRadix3, toRegExp, toVueRouter4 } from '../../src'
return segments.map(s => parseSegment(s))
}
const PARAM_CHAR_RE = /[\w\d_.]/

Check failure on line 32 in src/parse.ts

GitHub Actions / lint

'_' (U+005f) is already included in '\w'

Check failure on line 32 in src/parse.ts

GitHub Actions / lint

'\d' is already included in '\w'

Check failure on line 32 in src/parse.ts

GitHub Actions / lint

'_' (U+005f) is already included in '\w'

Check failure on line 32 in src/parse.ts

GitHub Actions / lint

'\d' is already included in '\w'
export type SegmentType = 'static' | 'dynamic' | 'optional' | 'catchall'
export interface ParsedPathSegmentToken { type: SegmentType, value: string }
export { toRadix3, toRegExp, toVueRouter4 } from './converters'
export type { ParsePathOptions, ParsedPath, ParsedPathSegment, ParsedPathSegmentToken, SegmentType } from './parse'

Check failure on line 3 in src/index.ts

GitHub Actions / lint

Expected "ParsedPath" to come before "ParsePathOptions"

Check failure on line 3 in src/index.ts

GitHub Actions / lint

Expected "ParsedPath" to come before "ParsePathOptions"
export { parsePath } from './parse'
import { encodePath, joinURL } from 'ufo'
import escapeStringRegexp from 'escape-string-regexp'

Check failure on line 2 in src/converters.ts

GitHub Actions / lint

Expected "escape-string-regexp" to come before "ufo"

Check failure on line 2 in src/converters.ts

GitHub Actions / lint

Expected "escape-string-regexp" to come before "ufo"
import type { ParsedPath } from './parse'

Check failure on line 4 in src/converters.ts

GitHub Actions / lint

Expected "./parse" (sibling-type) to come before "escape-string-regexp" (external)

Check failure on line 4 in src/converters.ts

GitHub Actions / lint

Expected "./parse" (sibling-type) to come before "escape-string-regexp" (external)
import { parsePath } from './parse'
/**