Skip to content

Commit 6db029d

Browse files
committed
chore: bump deps
1 parent ef876ba commit 6db029d

7 files changed

Lines changed: 75 additions & 78 deletions

File tree

biome.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
},
2222
"style": {
2323
"noNonNullAssertion": "off"
24-
},
25-
"nursery": {
26-
"useImportType": "error"
2724
}
2825
}
2926
},
@@ -35,10 +32,9 @@
3532
},
3633
"overrides": [
3734
{
38-
"include": ["*.jsonc"],
35+
"include": ["*.json"],
3936
"json": {
4037
"parser": {
41-
"allowComments": true,
4238
"allowTrailingCommas": true
4339
}
4440
}

package-lock.json

Lines changed: 56 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"bump-biome:nightly": "npm i -DE @biomejs/biome@nightly"
8888
},
8989
"devDependencies": {
90-
"@biomejs/biome": "1.5.3-nightly.69f9031",
90+
"@biomejs/biome": "1.6.0",
9191
"@changesets/cli": "^2.27.1",
9292
"@commitlint/cli": "^19.0.3",
9393
"@commitlint/config-conventional": "^19.0.3",
@@ -96,7 +96,7 @@
9696
"@prettier/plugin-ruby": "^4.0.4",
9797
"@prettier/plugin-xml": "^3.2.2",
9898
"@stedi/prettier-plugin-jsonata": "^2.1.1",
99-
"@types/node": "^20.11.20",
99+
"@types/node": "^20.11.25",
100100
"@vitest/coverage-istanbul": "^1.3.1",
101101
"@vitest/ui": "^1.3.1",
102102
"@xml-tools/parser": "^1.0.11",
@@ -120,10 +120,10 @@
120120
"prettier-plugin-sql": "^0.18.0",
121121
"prettier-plugin-sql-cst": "^0.11.1",
122122
"prettier-plugin-toml": "^2.0.1",
123-
"simple-git-hooks": "^2.9.0",
123+
"simple-git-hooks": "^2.10.0",
124124
"tsx": "^4.7.1",
125-
"typescript": "^5.3.3",
126-
"vite": "^5.1.4",
125+
"typescript": "^5.4.2",
126+
"vite": "^5.1.5",
127127
"vitest": "^1.3.1"
128128
},
129129
"dependencies": {
@@ -132,6 +132,6 @@
132132
"micro-memoize": "^4.1.2",
133133
"package-up": "^5.0.0",
134134
"tiny-jsonc": "^1.0.1",
135-
"type-fest": "^4.10.3"
135+
"type-fest": "^4.12.0"
136136
}
137137
}

src/embedded/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ export const randomUUID = (() => {
105105
for (let i = 0; i < uuidLength; ++i) {
106106
id +=
107107
dict[
108-
parseInt((Math.random() * dict.length).toFixed(0), 10) % dict.length
108+
Number.parseInt((Math.random() * dict.length).toFixed(0), 10) %
109+
dict.length
109110
];
110111
}
111112
return id;

src/embedded/xml/parser.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ function createSyntaxErrorFromParseError(parseError: IRecognitionException) {
4848
const options: ErrorOptions = {
4949
loc: {
5050
start: {
51-
line: parseError.token.startLine ?? NaN,
52-
column: parseError.token.startColumn ?? NaN,
51+
line: parseError.token.startLine ?? Number.NaN,
52+
column: parseError.token.startColumn ?? Number.NaN,
5353
},
5454
end: {
55-
line: parseError.token.endLine ?? NaN,
56-
column: parseError.token.endColumn ?? NaN,
55+
line: parseError.token.endLine ?? Number.NaN,
56+
column: parseError.token.endColumn ?? Number.NaN,
5757
},
5858
},
5959
};
@@ -160,7 +160,7 @@ export const parser: Parser<CstNode> = {
160160
return node.location!.startOffset;
161161
},
162162
locEnd(node: CstNode) {
163-
return node.location!.endOffset ?? NaN;
163+
return node.location!.endOffset ?? Number.NaN;
164164
},
165165
};
166166

tsconfig.base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"noUnusedLocals": true,
1717
"noUnusedParameters": true,
1818
"noFallthroughCasesInSwitch": true,
19-
"noUncheckedIndexedAccess": true,
20-
},
19+
"noUncheckedIndexedAccess": true
20+
}
2121
}

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"include": ["./src", "./tests"],
44
"references": [
55
{
6-
"path": "./tsconfig.node.json",
7-
},
8-
],
6+
"path": "./tsconfig.node.json"
7+
}
8+
]
99
}

0 commit comments

Comments
 (0)