Skip to content

Commit 04771db

Browse files
authored
fix: upgrade jsonpath package (#25)
1 parent 1a8ffbf commit 04771db

File tree

7 files changed

+1989
-2393
lines changed

7 files changed

+1989
-2393
lines changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024, SkyLeague Technologies B.V.. 'SkyLeague' and the astronaut logo are trademarks of SkyLeague Technologies, registered at Chamber of Commerce in The Netherlands under number 86650564.
1+
Copyright (c) 2025, SkyLeague Technologies B.V.. 'SkyLeague' and the astronaut logo are trademarks of SkyLeague Technologies, registered at Chamber of Commerce in The Netherlands under number 86650564.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

docs/babel.config.js

-3
This file was deleted.

docs/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"scripts": {
55
"docusaurus": "docusaurus",
66
"start": "docusaurus start",
7+
"prebuild": "npm install",
78
"build": "docusaurus build --out-dir=../.docs",
89
"swizzle": "docusaurus swizzle",
910
"deploy": "docusaurus deploy",
@@ -16,8 +17,8 @@
1617
"@docusaurus/core": "^3.6.3",
1718
"@docusaurus/preset-classic": "^3.6.3",
1819
"@docusaurus/faster": "^3.6.3",
19-
"@mdx-js/react": "^3.0.1",
20-
"prism-react-renderer": "^2.3.1",
20+
"@mdx-js/react": "^3.1.0",
21+
"prism-react-renderer": "^2.4.1",
2122
"react": "^18.3.1",
2223
"react-dom": "^18.3.1"
2324
},
@@ -30,6 +31,6 @@
3031
"development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
3132
},
3233
"engines": {
33-
"node": ">=20"
34+
"node": ">=22"
3435
}
3536
}

package-lock.json

+1,979-2,365
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"files": [".dist", "package.json"],
2020
"scripts": {
2121
"build": "tsc -p tsconfig.dist.json",
22-
"build:docs": "npm run --workspace=docs build",
22+
"build:docs": "npm run --prefix=docs build",
2323
"check:coverage": "vitest run --coverage=true",
2424
"check:project": "node-standards lint",
2525
"check:types": "tsc -p tsconfig.json",
@@ -30,12 +30,12 @@
3030
"test": "vitest run"
3131
},
3232
"dependencies": {
33-
"jsonpath-plus": "^10.2.0"
33+
"jsonpath-plus": "^10.3.0"
3434
},
3535
"devDependencies": {
36-
"@skyleague/axioms": "^6.1.0",
37-
"@skyleague/node-standards": "^9.4.0",
38-
"typescript": "5.7.2"
36+
"@skyleague/axioms": "^6.5.1",
37+
"@skyleague/node-standards": "^10.0.1",
38+
"typescript": "^5.8.2"
3939
},
4040
"engines": {
4141
"node": ">=22"

typedoc.cjs

-7
This file was deleted.

vitest.config.ts

-9
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ export default defineConfig({
1212
},
1313
fakeTimers: {
1414
now: new Date(2022, 1, 10).getTime(),
15-
toFake: [
16-
// 'setTimeout',
17-
// 'setImmediate',
18-
'clearTimeout',
19-
'setInterval',
20-
'clearInterval',
21-
'clearImmediate',
22-
'Date',
23-
],
2415
},
2516
},
2617
})

0 commit comments

Comments
 (0)