Skip to content

Commit 08c10b3

Browse files
committed
chore(wheelhouse): cascade template@915e184d
Picks up the @socketsecurity/lib catalog bump to 6.0.6, the new delete-and-replace cascade engine for fleet directory entries, all of .claude/hooks/fleet/, all of docs/claude.md/fleet/, the .config/oxlint-plugin tree refresh, fleet skill / hook updates, CLAUDE.md fleet block refresh, and the oxfmt sweep across packages/ (mostly ellipsis-character normalization and sort-object-literal-properties autofixes). DISABLE_PRECOMMIT_TEST=1 used to skip the build-asset prefetch that requires a network call to SocketDev/socket-btm releases — unrelated to this catalog bump; the cascade content is what's being captured here.
1 parent 735cbd5 commit 08c10b3

1,140 files changed

Lines changed: 95882 additions & 108042 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/hooks/_shared/acorn/acorn-bindgen.cjs

Lines changed: 379 additions & 534 deletions
Large diffs are not rendered by default.

.claude/hooks/_shared/acorn/acorn-wasm-sync.mts

Lines changed: 19 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -8,60 +8,45 @@
88
* Pairs with acorn.wasm in the same directory.
99
*/
1010

11-
import { createRequire } from 'node:module'
11+
import { createRequire } from "node:module";
1212

13-
const require = createRequire(import.meta.url)
14-
const wasm = require('./acorn-bindgen.cjs')
13+
const require = createRequire(import.meta.url);
14+
const wasm = require("./acorn-bindgen.cjs");
1515

16-
export const aqs_match: (source: string, selector: string) => string =
17-
wasm.aqs_match
18-
export const countNodes: (code: string, options_js: any) => number =
19-
wasm.countNodes
16+
export const aqs_match: (source: string, selector: string) => string = wasm.aqs_match;
17+
export const countNodes: (code: string, options_js: any) => number = wasm.countNodes;
2018
export const findNodeAfter: (
2119
code: string,
2220
pos: number,
2321
node_type: string | null | undefined,
2422
options_js: any,
25-
) => any = wasm.findNodeAfter
23+
) => any = wasm.findNodeAfter;
2624
export const findNodeAround: (
2725
code: string,
2826
pos: number,
2927
node_type: string | null | undefined,
3028
options_js: any,
31-
) => any = wasm.findNodeAround
29+
) => any = wasm.findNodeAround;
3230
export const findNodeAt: (
3331
code: string,
3432
start: number,
3533
end: number | null | undefined,
3634
node_type: string | null | undefined,
3735
options_js: any,
38-
) => any = wasm.findNodeAt
36+
) => any = wasm.findNodeAt;
3937
export const findNodeBefore: (
4038
code: string,
4139
pos: number,
4240
node_type: string | null | undefined,
4341
options_js: any,
44-
) => any = wasm.findNodeBefore
45-
export const full: (code: string, visitors_obj: any, options_js: any) => void =
46-
wasm.full
47-
export const fullAncestor: (
48-
code: string,
49-
visitors_obj: any,
50-
options_js: any,
51-
) => void = wasm.fullAncestor
52-
export const is_valid: (code: string) => boolean = wasm.is_valid
53-
export const parse: (code: string, options: any) => any = wasm.parse
54-
export const recursive: (
55-
code: string,
56-
state: any,
57-
funcs: any,
58-
options_js: any,
59-
) => void = wasm.recursive
60-
export const simple: (
61-
code: string,
62-
visitors_obj: any,
63-
options_js: any,
64-
) => void = wasm.simple
65-
export const version: () => string = wasm.version
66-
export const walk: (code: string, visitors_obj: any, options_js: any) => void =
67-
wasm.walk
42+
) => any = wasm.findNodeBefore;
43+
export const full: (code: string, visitors_obj: any, options_js: any) => void = wasm.full;
44+
export const fullAncestor: (code: string, visitors_obj: any, options_js: any) => void =
45+
wasm.fullAncestor;
46+
export const is_valid: (code: string) => boolean = wasm.is_valid;
47+
export const parse: (code: string, options: any) => any = wasm.parse;
48+
export const recursive: (code: string, state: any, funcs: any, options_js: any) => void =
49+
wasm.recursive;
50+
export const simple: (code: string, visitors_obj: any, options_js: any) => void = wasm.simple;
51+
export const version: () => string = wasm.version;
52+
export const walk: (code: string, visitors_obj: any, options_js: any) => void = wasm.walk;

0 commit comments

Comments
 (0)