Skip to content

Commit ea8d11b

Browse files
chore(deps): update dependency @oxlint/plugins to v1.78.0 (main) (#45346)
* chore(deps): update dependency @oxlint/plugins to v1.78.0 | datasource | package | from | to | | ---------- | --------------- | ------ | ------ | | npm | @oxlint/plugins | 1.72.0 | 1.78.0 | * chore(deps): update dependency oxlint to v1.78.0 Align oxlint with @oxlint/plugins so the plugin types match again, and replace the computed namespace access in validate-schemas.spec.ts that oxlint 1.78 flags via import/namespace. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: secustor <sebastian@poxhofer.at>
1 parent c05d35a commit ea8d11b

3 files changed

Lines changed: 104 additions & 90 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
"@hyrious/marshal": "0.3.4",
282282
"@ls-lint/ls-lint": "2.3.1",
283283
"@openpgp/web-stream-tools": "0.3.1",
284-
"@oxlint/plugins": "1.72.0",
284+
"@oxlint/plugins": "1.78.0",
285285
"@semantic-release/exec": "7.1.0",
286286
"@smithy/util-stream": "4.8.2",
287287
"@types/adm-zip": "0.5.8",
@@ -339,7 +339,7 @@
339339
"nock": "14.0.17",
340340
"npm-run-all2": "9.0.3",
341341
"nyc": "18.0.0",
342-
"oxlint": "1.72.0",
342+
"oxlint": "1.78.0",
343343
"oxlint-tsgolint": "7.0.2001",
344344
"rimraf": "6.1.3",
345345
"semantic-release": "25.0.9",

pnpm-lock.yaml

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

test/other/validate-schemas.spec.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@ import fs from 'fs-extra';
22
import upath from 'upath';
33
import { Json } from '../../lib/util/schema-utils/index.ts';
44
import { capitalize } from '../../lib/util/string.ts';
5-
import * as Schemas from '../../tools/schemas/schema.ts';
5+
import {
6+
Abandonments,
7+
ChangelogUrls,
8+
Monorepo,
9+
Replacements,
10+
SourceUrls,
11+
} from '../../tools/schemas/schema.ts';
12+
13+
const Schemas = {
14+
Abandonments,
15+
ChangelogUrls,
16+
Monorepo,
17+
Replacements,
18+
SourceUrls,
19+
};
620

721
describe('other/validate-schemas', () => {
822
it('validate json files in lib/data against their schemas', async () => {

0 commit comments

Comments
 (0)