@dunx/transform 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -51,7 +51,7 @@ The record is a **thunk**, so it is evaluated when the container resolves the cl
51
51
  rather than when the module is defined. A dependency declared later in the file, or
52
52
  reached through a circular import, therefore needs no `forwardRef`.
53
53
 
54
- Only the appended statement is added every other byte of the original source is
54
+ Only the appended statement is added - every other byte of the original source is
55
55
  preserved, so comments, formatting, and the line numbers in stack traces are
56
56
  unchanged.
57
57
 
package/dist/ast.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Minimal structural views over oxc's ESTree output only the node shapes the
2
+ * Minimal structural views over oxc's ESTree output - only the node shapes the
3
3
  * dependency transform reads. Verified against real `oxc-parser` output.
4
4
  */
5
5
  export interface Node {
@@ -61,7 +61,7 @@ export declare const isParameterProperty: (node: Node | null | undefined) => nod
61
61
  /**
62
62
  * Declarations only. A `ClassExpression`'s own name is bound inside the class
63
63
  * body, not outside it, so a statement appended after `const X = class Foo {}`
64
- * could not reference `Foo` it would be a ReferenceError at load.
64
+ * could not reference `Foo` - it would be a ReferenceError at load.
65
65
  */
66
66
  export declare const isClassDeclaration: (node: Node) => node is ClassNode;
67
67
  /**
package/dist/deps.d.ts CHANGED
@@ -9,8 +9,8 @@ export interface TransformResult {
9
9
  * declared type, as thunks on the class itself.
10
10
  *
11
11
  * A thunk, not a literal: the body is evaluated when the record is read rather
12
- * than when the module is defined, so a dependency declared later in the file
13
- * or in a circular import is not a temporal-dead-zone crash. That is what
12
+ * than when the module is defined, so a dependency declared later in the file -
13
+ * or in a circular import - is not a temporal-dead-zone crash. That is what
14
14
  * removes the need for Nest's `forwardRef`, and it is also why a class decorator
15
15
  * cannot read the field record while it runs: the statement is appended after the
16
16
  * class, which is after decoration.
package/dist/edits.d.ts CHANGED
@@ -5,7 +5,7 @@ export interface Edit {
5
5
  }
6
6
  /**
7
7
  * Splices edits into the original text rather than reprinting the AST, so
8
- * everything untouched keeps its exact bytes comments, formatting, and the
8
+ * everything untouched keeps its exact bytes - comments, formatting, and the
9
9
  * line numbers stack traces point at.
10
10
  */
11
11
  export declare const applyEdits: (source: string, edits: readonly Edit[]) => string;
package/dist/index.js CHANGED
@@ -108,7 +108,7 @@ var transform = (source, filename = "input.ts") => {
108
108
  const parsed = parseSync(filename, source);
109
109
  if (parsed.errors.length > 0) {
110
110
  const detail = parsed.errors.slice(0, 3).map((error) => error.message).join("; ");
111
- throw new Error(`${filename}: could not parse \u2014 ${detail}`);
111
+ throw new Error(`${filename}: could not parse - ${detail}`);
112
112
  }
113
113
  const program = parsed.program;
114
114
  const typeOnly = collectTypeOnlyNames(program);
@@ -157,5 +157,5 @@ export {
157
157
  applyEdits
158
158
  };
159
159
 
160
- //# debugId=3995A726D31893AF64756E2164756E21
160
+ //# debugId=5FE4ADF99A0CBD6064756E2164756E21
161
161
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -2,13 +2,13 @@
2
2
  "version": 3,
3
3
  "sources": ["../src/deps.ts", "../src/ast.ts", "../src/edits.ts", "../src/erased.ts", "../src/plugin.ts"],
4
4
  "sourcesContent": [
5
- "import { parseSync } from 'oxc-parser';\nimport {\n isClassDeclaration,\n isIdentifier,\n isMethodDefinition,\n isParameterProperty,\n isTypeReference,\n nameOf,\n walk,\n type ClassNode,\n type Node,\n} from './ast.js';\nimport { applyEdits, type Edit } from './edits.js';\nimport { collectTypeOnlyNames, erasedNames } from './erased.js';\n\n/**\n * `Symbol.for`, not `Symbol`: two copies of `@dunx/core` in one dependency tree\n * still agree on the key. Same technique as module and route markers.\n */\nconst DEPS_KEY = \"Symbol.for('dunx.deps')\";\n\nexport interface TransformResult {\n readonly code: string;\n readonly changed: boolean;\n /** Classes that received dependency metadata, in source order. */\n readonly annotated: readonly string[];\n}\n\nconst slice = (source: string, node: Node): string =>\n source.slice(node.start, node.end);\n\nconst constructorParams = (klass: ClassNode): readonly Node[] => {\n const found = klass.body.body.find(\n (member) =>\n isMethodDefinition(member) && nameOf(member.key) === 'constructor',\n );\n return isMethodDefinition(found) ? found.value.params : [];\n};\n\n/** The declared type of a parameter, unwrapping `private readonly x: X`. */\nconst annotationOf = (param: Node): Node | undefined => {\n const inner = isParameterProperty(param) ? param.parameter : param;\n if (!isIdentifier(inner)) return undefined;\n return inner.typeAnnotation?.typeAnnotation;\n};\n\n/**\n * One entry per constructor parameter. A parameter whose type names something\n * that exists at runtime becomes that expression; anything else becomes an\n * `unresolved` descriptor so the container can name it precisely at boot instead\n * of constructing a broken object.\n */\nconst entryFor = (\n source: string,\n param: Node,\n erased: ReadonlySet<string>,\n): string => {\n const unresolved = `{ unresolved: ${JSON.stringify(slice(source, param))} }`;\n const annotation = annotationOf(param);\n\n if (!annotation || !isTypeReference(annotation)) return unresolved;\n\n const token = slice(source, annotation.typeName);\n // A qualified name (`ns.Thing`) is a runtime value; a bare erased name is not.\n if (erased.has(token)) return unresolved;\n\n return token;\n};\n\n/**\n * Records each class's constructor dependencies, and each decorated field's\n * declared type, as thunks on the class itself.\n *\n * A thunk, not a literal: the body is evaluated when the record is read rather\n * than when the module is defined, so a dependency declared later in the file —\n * or in a circular import is not a temporal-dead-zone crash. That is what\n * removes the need for Nest's `forwardRef`, and it is also why a class decorator\n * cannot read the field record while it runs: the statement is appended after the\n * class, which is after decoration.\n */\nexport const transform = (\n source: string,\n filename = 'input.ts',\n): TransformResult => {\n const parsed = parseSync(filename, source);\n\n if (parsed.errors.length > 0) {\n const detail = parsed.errors\n .slice(0, 3)\n .map((error) => error.message)\n .join('; ');\n throw new Error(`${filename}: could not parse ${detail}`);\n }\n\n const program = parsed.program;\n const typeOnly = collectTypeOnlyNames(program);\n const edits: Edit[] = [];\n const annotated: string[] = [];\n\n walk(program, (node) => {\n if (!isClassDeclaration(node)) return;\n\n const name = node.id?.name;\n if (name === undefined) return;\n\n const erased = erasedNames(typeOnly, node);\n const params = constructorParams(node);\n\n if (params.length > 0) {\n const entries = params.map((param) => entryFor(source, param, erased));\n annotated.push(name);\n edits.push({\n start: node.end,\n end: node.end,\n text:\n `\\nObject.defineProperty(${name}, ${DEPS_KEY}, {\\n` +\n ` value: () => [${entries.join(', ')}],\\n});`,\n });\n }\n });\n\n const code = applyEdits(source, edits);\n return { code, changed: code !== source, annotated };\n};\n",
6
- "/**\n * Minimal structural views over oxc's ESTree output only the node shapes the\n * dependency transform reads. Verified against real `oxc-parser` output.\n */\nexport interface Node {\n readonly type: string;\n readonly start: number;\n readonly end: number;\n}\n\nexport interface Identifier extends Node {\n readonly type: 'Identifier';\n readonly name: string;\n readonly typeAnnotation?: TSTypeAnnotation | null;\n}\n\nexport interface ClassBody extends Node {\n readonly type: 'ClassBody';\n readonly body: readonly Node[];\n}\n\n/** `ClassDeclaration` and `ClassExpression` share every field read here. */\nexport interface ClassNode extends Node {\n readonly id: Identifier | null;\n readonly typeParameters: Node | null;\n readonly body: ClassBody;\n}\n\nexport interface FunctionExpression extends Node {\n readonly params: readonly Node[];\n}\n\nexport interface MethodDefinition extends Node {\n readonly type: 'MethodDefinition';\n readonly key: Node;\n readonly value: FunctionExpression;\n}\n\nexport interface TSParameterProperty extends Node {\n readonly type: 'TSParameterProperty';\n readonly parameter: Node;\n}\n\nexport interface TSTypeAnnotation extends Node {\n readonly type: 'TSTypeAnnotation';\n readonly typeAnnotation: Node;\n}\n\nexport interface TSTypeReference extends Node {\n readonly type: 'TSTypeReference';\n readonly typeName: Node;\n}\n\nexport interface ImportDeclaration extends Node {\n readonly type: 'ImportDeclaration';\n readonly specifiers: readonly Node[];\n readonly importKind: 'value' | 'type';\n}\n\nexport interface ImportSpecifier extends Node {\n readonly type: 'ImportSpecifier';\n readonly local: Identifier;\n readonly importKind: 'value' | 'type';\n}\n\nconst guard =\n <T extends Node>(type: T['type']) =>\n (node: Node | null | undefined): node is T =>\n node?.type === type;\n\nexport const isIdentifier = guard<Identifier>('Identifier');\nexport const isMethodDefinition = guard<MethodDefinition>('MethodDefinition');\nexport const isTypeReference = guard<TSTypeReference>('TSTypeReference');\nexport const isImportDeclaration =\n guard<ImportDeclaration>('ImportDeclaration');\nexport const isImportSpecifier = guard<ImportSpecifier>('ImportSpecifier');\nexport const isParameterProperty = guard<TSParameterProperty>(\n 'TSParameterProperty',\n);\n\n/**\n * Declarations only. A `ClassExpression`'s own name is bound inside the class\n * body, not outside it, so a statement appended after `const X = class Foo {}`\n * could not reference `Foo` it would be a ReferenceError at load.\n */\nexport const isClassDeclaration = (node: Node): node is ClassNode =>\n node.type === 'ClassDeclaration';\n\n/**\n * Depth-first over every object in the tree. oxc's ESTree output is a plain\n * object graph with no parent links, so recursing every own value is safe and\n * needs no visitor-key table.\n */\nexport const walk = (root: unknown, visit: (node: Node) => void): void => {\n if (Array.isArray(root)) {\n for (const child of root) walk(child, visit);\n return;\n }\n if (root === null || typeof root !== 'object') return;\n\n const candidate = root as Partial<Node>;\n if (\n typeof candidate.type === 'string' &&\n typeof candidate.start === 'number' &&\n typeof candidate.end === 'number'\n ) {\n visit(root as Node);\n }\n\n for (const child of Object.values(root)) walk(child, visit);\n};\n\nexport const nameOf = (node: Node | null | undefined): string | undefined =>\n isIdentifier(node) ? node.name : undefined;\n",
7
- "export interface Edit {\n readonly start: number;\n readonly end: number;\n readonly text: string;\n}\n\n/**\n * Splices edits into the original text rather than reprinting the AST, so\n * everything untouched keeps its exact bytes comments, formatting, and the\n * line numbers stack traces point at.\n */\nexport const applyEdits = (source: string, edits: readonly Edit[]): string => {\n const sorted = [...edits].sort(\n (left, right) => left.start - right.start || left.end - right.end,\n );\n\n let out = '';\n let cursor = 0;\n\n for (const edit of sorted) {\n if (edit.start < cursor) {\n throw new Error(\n `Overlapping edit at ${edit.start}..${edit.end}; the previous edit ended ` +\n `at ${cursor}.`,\n );\n }\n out += source.slice(cursor, edit.start) + edit.text;\n cursor = edit.end;\n }\n\n return out + source.slice(cursor);\n};\n",
5
+ "import { parseSync } from 'oxc-parser';\nimport {\n isClassDeclaration,\n isIdentifier,\n isMethodDefinition,\n isParameterProperty,\n isTypeReference,\n nameOf,\n walk,\n type ClassNode,\n type Node,\n} from './ast.js';\nimport { applyEdits, type Edit } from './edits.js';\nimport { collectTypeOnlyNames, erasedNames } from './erased.js';\n\n/**\n * `Symbol.for`, not `Symbol`: two copies of `@dunx/core` in one dependency tree\n * still agree on the key. Same technique as module and route markers.\n */\nconst DEPS_KEY = \"Symbol.for('dunx.deps')\";\n\nexport interface TransformResult {\n readonly code: string;\n readonly changed: boolean;\n /** Classes that received dependency metadata, in source order. */\n readonly annotated: readonly string[];\n}\n\nconst slice = (source: string, node: Node): string =>\n source.slice(node.start, node.end);\n\nconst constructorParams = (klass: ClassNode): readonly Node[] => {\n const found = klass.body.body.find(\n (member) =>\n isMethodDefinition(member) && nameOf(member.key) === 'constructor',\n );\n return isMethodDefinition(found) ? found.value.params : [];\n};\n\n/** The declared type of a parameter, unwrapping `private readonly x: X`. */\nconst annotationOf = (param: Node): Node | undefined => {\n const inner = isParameterProperty(param) ? param.parameter : param;\n if (!isIdentifier(inner)) return undefined;\n return inner.typeAnnotation?.typeAnnotation;\n};\n\n/**\n * One entry per constructor parameter. A parameter whose type names something\n * that exists at runtime becomes that expression; anything else becomes an\n * `unresolved` descriptor so the container can name it precisely at boot instead\n * of constructing a broken object.\n */\nconst entryFor = (\n source: string,\n param: Node,\n erased: ReadonlySet<string>,\n): string => {\n const unresolved = `{ unresolved: ${JSON.stringify(slice(source, param))} }`;\n const annotation = annotationOf(param);\n\n if (!annotation || !isTypeReference(annotation)) return unresolved;\n\n const token = slice(source, annotation.typeName);\n // A qualified name (`ns.Thing`) is a runtime value; a bare erased name is not.\n if (erased.has(token)) return unresolved;\n\n return token;\n};\n\n/**\n * Records each class's constructor dependencies, and each decorated field's\n * declared type, as thunks on the class itself.\n *\n * A thunk, not a literal: the body is evaluated when the record is read rather\n * than when the module is defined, so a dependency declared later in the file -\n * or in a circular import - is not a temporal-dead-zone crash. That is what\n * removes the need for Nest's `forwardRef`, and it is also why a class decorator\n * cannot read the field record while it runs: the statement is appended after the\n * class, which is after decoration.\n */\nexport const transform = (\n source: string,\n filename = 'input.ts',\n): TransformResult => {\n const parsed = parseSync(filename, source);\n\n if (parsed.errors.length > 0) {\n const detail = parsed.errors\n .slice(0, 3)\n .map((error) => error.message)\n .join('; ');\n throw new Error(`${filename}: could not parse - ${detail}`);\n }\n\n const program = parsed.program;\n const typeOnly = collectTypeOnlyNames(program);\n const edits: Edit[] = [];\n const annotated: string[] = [];\n\n walk(program, (node) => {\n if (!isClassDeclaration(node)) return;\n\n const name = node.id?.name;\n if (name === undefined) return;\n\n const erased = erasedNames(typeOnly, node);\n const params = constructorParams(node);\n\n if (params.length > 0) {\n const entries = params.map((param) => entryFor(source, param, erased));\n annotated.push(name);\n edits.push({\n start: node.end,\n end: node.end,\n text:\n `\\nObject.defineProperty(${name}, ${DEPS_KEY}, {\\n` +\n ` value: () => [${entries.join(', ')}],\\n});`,\n });\n }\n });\n\n const code = applyEdits(source, edits);\n return { code, changed: code !== source, annotated };\n};\n",
6
+ "/**\n * Minimal structural views over oxc's ESTree output - only the node shapes the\n * dependency transform reads. Verified against real `oxc-parser` output.\n */\nexport interface Node {\n readonly type: string;\n readonly start: number;\n readonly end: number;\n}\n\nexport interface Identifier extends Node {\n readonly type: 'Identifier';\n readonly name: string;\n readonly typeAnnotation?: TSTypeAnnotation | null;\n}\n\nexport interface ClassBody extends Node {\n readonly type: 'ClassBody';\n readonly body: readonly Node[];\n}\n\n/** `ClassDeclaration` and `ClassExpression` share every field read here. */\nexport interface ClassNode extends Node {\n readonly id: Identifier | null;\n readonly typeParameters: Node | null;\n readonly body: ClassBody;\n}\n\nexport interface FunctionExpression extends Node {\n readonly params: readonly Node[];\n}\n\nexport interface MethodDefinition extends Node {\n readonly type: 'MethodDefinition';\n readonly key: Node;\n readonly value: FunctionExpression;\n}\n\nexport interface TSParameterProperty extends Node {\n readonly type: 'TSParameterProperty';\n readonly parameter: Node;\n}\n\nexport interface TSTypeAnnotation extends Node {\n readonly type: 'TSTypeAnnotation';\n readonly typeAnnotation: Node;\n}\n\nexport interface TSTypeReference extends Node {\n readonly type: 'TSTypeReference';\n readonly typeName: Node;\n}\n\nexport interface ImportDeclaration extends Node {\n readonly type: 'ImportDeclaration';\n readonly specifiers: readonly Node[];\n readonly importKind: 'value' | 'type';\n}\n\nexport interface ImportSpecifier extends Node {\n readonly type: 'ImportSpecifier';\n readonly local: Identifier;\n readonly importKind: 'value' | 'type';\n}\n\nconst guard =\n <T extends Node>(type: T['type']) =>\n (node: Node | null | undefined): node is T =>\n node?.type === type;\n\nexport const isIdentifier = guard<Identifier>('Identifier');\nexport const isMethodDefinition = guard<MethodDefinition>('MethodDefinition');\nexport const isTypeReference = guard<TSTypeReference>('TSTypeReference');\nexport const isImportDeclaration =\n guard<ImportDeclaration>('ImportDeclaration');\nexport const isImportSpecifier = guard<ImportSpecifier>('ImportSpecifier');\nexport const isParameterProperty = guard<TSParameterProperty>(\n 'TSParameterProperty',\n);\n\n/**\n * Declarations only. A `ClassExpression`'s own name is bound inside the class\n * body, not outside it, so a statement appended after `const X = class Foo {}`\n * could not reference `Foo` - it would be a ReferenceError at load.\n */\nexport const isClassDeclaration = (node: Node): node is ClassNode =>\n node.type === 'ClassDeclaration';\n\n/**\n * Depth-first over every object in the tree. oxc's ESTree output is a plain\n * object graph with no parent links, so recursing every own value is safe and\n * needs no visitor-key table.\n */\nexport const walk = (root: unknown, visit: (node: Node) => void): void => {\n if (Array.isArray(root)) {\n for (const child of root) walk(child, visit);\n return;\n }\n if (root === null || typeof root !== 'object') return;\n\n const candidate = root as Partial<Node>;\n if (\n typeof candidate.type === 'string' &&\n typeof candidate.start === 'number' &&\n typeof candidate.end === 'number'\n ) {\n visit(root as Node);\n }\n\n for (const child of Object.values(root)) walk(child, visit);\n};\n\nexport const nameOf = (node: Node | null | undefined): string | undefined =>\n isIdentifier(node) ? node.name : undefined;\n",
7
+ "export interface Edit {\n readonly start: number;\n readonly end: number;\n readonly text: string;\n}\n\n/**\n * Splices edits into the original text rather than reprinting the AST, so\n * everything untouched keeps its exact bytes - comments, formatting, and the\n * line numbers stack traces point at.\n */\nexport const applyEdits = (source: string, edits: readonly Edit[]): string => {\n const sorted = [...edits].sort(\n (left, right) => left.start - right.start || left.end - right.end,\n );\n\n let out = '';\n let cursor = 0;\n\n for (const edit of sorted) {\n if (edit.start < cursor) {\n throw new Error(\n `Overlapping edit at ${edit.start}..${edit.end}; the previous edit ended ` +\n `at ${cursor}.`,\n );\n }\n out += source.slice(cursor, edit.start) + edit.text;\n cursor = edit.end;\n }\n\n return out + source.slice(cursor);\n};\n",
8
8
  "import {\n isImportDeclaration,\n isImportSpecifier,\n nameOf,\n walk,\n type ClassNode,\n type Node,\n} from './ast.js';\n\n/**\n * Names that exist only in the type system, so emitting them in a value position\n * would be a `ReferenceError` at runtime. Collected per file: type-only imports,\n * inline `type` specifiers, local interfaces and type aliases.\n */\nexport const collectTypeOnlyNames = (program: Node): ReadonlySet<string> => {\n const names = new Set<string>();\n\n walk(program, (node) => {\n if (isImportDeclaration(node)) {\n for (const specifier of node.specifiers) {\n if (!isImportSpecifier(specifier)) continue;\n if (node.importKind === 'type' || specifier.importKind === 'type') {\n names.add(specifier.local.name);\n }\n }\n return;\n }\n\n if (\n node.type === 'TSInterfaceDeclaration' ||\n node.type === 'TSTypeAliasDeclaration'\n ) {\n const declared = (node as { id?: Node }).id;\n const name = nameOf(declared);\n if (name !== undefined) names.add(name);\n }\n });\n\n return names;\n};\n\n/** A class's own type parameters are erased, so `T` is never a usable token. */\nexport const collectTypeParameters = (\n klass: ClassNode,\n): ReadonlySet<string> => {\n const names = new Set<string>();\n if (klass.typeParameters === null) return names;\n\n walk(klass.typeParameters, (node) => {\n if (node.type !== 'TSTypeParameter') return;\n const name = nameOf((node as { name?: Node }).name);\n if (name !== undefined) names.add(name);\n });\n\n return names;\n};\n\n/** Every name in this file that a value position cannot use. */\nexport const erasedNames = (\n typeOnly: ReadonlySet<string>,\n klass: ClassNode,\n): ReadonlySet<string> =>\n new Set([...typeOnly, ...collectTypeParameters(klass)]);\n",
9
- "import type { BunPlugin } from 'bun';\nimport { transform } from './deps.js';\n\n/**\n * Rewrites TypeScript as it is loaded so the container can read constructor\n * dependencies. Usable in three places, all the same object:\n *\n * - `bunfig.toml` -> `preload = [\"@dunx/transform/preload\"]` for `bun run`\n * - `Bun.build({ plugins: [depsPlugin] })` for a production build\n * - `Bun.plugin(depsPlugin)` from a test preload\n *\n * Dependencies are skipped: a published package was already transformed by its\n * own build, and re-parsing `node_modules` on every load is pure cost.\n */\nexport const depsPlugin: BunPlugin = {\n name: 'dunx-deps',\n setup(build) {\n // A runtime plugin's onLoad must always return a result there is no\n // \"decline and fall through\", so untransformed files are handed back as-is.\n build.onLoad({ filter: /\\.tsx?$/ }, async ({ path }) => {\n const source = await Bun.file(path).text();\n const loader = path.endsWith('.tsx') ? 'tsx' : 'ts';\n\n if (path.includes('/node_modules/')) return { contents: source, loader };\n\n return { contents: transform(source, path).code, loader };\n });\n },\n};\n"
9
+ "import type { BunPlugin } from 'bun';\nimport { transform } from './deps.js';\n\n/**\n * Rewrites TypeScript as it is loaded so the container can read constructor\n * dependencies. Usable in three places, all the same object:\n *\n * - `bunfig.toml` -> `preload = [\"@dunx/transform/preload\"]` for `bun run`\n * - `Bun.build({ plugins: [depsPlugin] })` for a production build\n * - `Bun.plugin(depsPlugin)` from a test preload\n *\n * Dependencies are skipped: a published package was already transformed by its\n * own build, and re-parsing `node_modules` on every load is pure cost.\n */\nexport const depsPlugin: BunPlugin = {\n name: 'dunx-deps',\n setup(build) {\n // A runtime plugin's onLoad must always return a result - there is no\n // \"decline and fall through\", so untransformed files are handed back as-is.\n build.onLoad({ filter: /\\.tsx?$/ }, async ({ path }) => {\n const source = await Bun.file(path).text();\n const loader = path.endsWith('.tsx') ? 'tsx' : 'ts';\n\n if (path.includes('/node_modules/')) return { contents: source, loader };\n\n return { contents: transform(source, path).code, loader };\n });\n },\n};\n"
10
10
  ],
11
- "mappings": "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",
12
- "debugId": "3995A726D31893AF64756E2164756E21",
11
+ "mappings": "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",
12
+ "debugId": "5FE4ADF99A0CBD6064756E2164756E21",
13
13
  "names": []
14
14
  }
package/dist/preload.js CHANGED
@@ -111,7 +111,7 @@ var transform = (source, filename = "input.ts") => {
111
111
  const parsed = parseSync(filename, source);
112
112
  if (parsed.errors.length > 0) {
113
113
  const detail = parsed.errors.slice(0, 3).map((error) => error.message).join("; ");
114
- throw new Error(`${filename}: could not parse \u2014 ${detail}`);
114
+ throw new Error(`${filename}: could not parse - ${detail}`);
115
115
  }
116
116
  const program = parsed.program;
117
117
  const typeOnly = collectTypeOnlyNames(program);
@@ -159,5 +159,5 @@ var depsPlugin = {
159
159
  // src/preload.ts
160
160
  await plugin(depsPlugin);
161
161
 
162
- //# debugId=BAAA0FE7F215564464756E2164756E21
162
+ //# debugId=55264012164FD10D64756E2164756E21
163
163
  //# sourceMappingURL=preload.js.map
@@ -3,13 +3,13 @@
3
3
  "sources": ["../src/preload.ts", "../src/deps.ts", "../src/ast.ts", "../src/edits.ts", "../src/erased.ts", "../src/plugin.ts"],
4
4
  "sourcesContent": [
5
5
  "import { plugin } from 'bun';\nimport { depsPlugin } from './plugin.js';\n\n// Side-effect entrypoint for `bunfig.toml`:\n// preload = [\"@dunx/transform/preload\"]\n//\n// Awaited, not fire-and-forget: registration has to finish before the entrypoint\n// is loaded, or the first modules through would miss the transform.\nawait plugin(depsPlugin);\n",
6
- "import { parseSync } from 'oxc-parser';\nimport {\n isClassDeclaration,\n isIdentifier,\n isMethodDefinition,\n isParameterProperty,\n isTypeReference,\n nameOf,\n walk,\n type ClassNode,\n type Node,\n} from './ast.js';\nimport { applyEdits, type Edit } from './edits.js';\nimport { collectTypeOnlyNames, erasedNames } from './erased.js';\n\n/**\n * `Symbol.for`, not `Symbol`: two copies of `@dunx/core` in one dependency tree\n * still agree on the key. Same technique as module and route markers.\n */\nconst DEPS_KEY = \"Symbol.for('dunx.deps')\";\n\nexport interface TransformResult {\n readonly code: string;\n readonly changed: boolean;\n /** Classes that received dependency metadata, in source order. */\n readonly annotated: readonly string[];\n}\n\nconst slice = (source: string, node: Node): string =>\n source.slice(node.start, node.end);\n\nconst constructorParams = (klass: ClassNode): readonly Node[] => {\n const found = klass.body.body.find(\n (member) =>\n isMethodDefinition(member) && nameOf(member.key) === 'constructor',\n );\n return isMethodDefinition(found) ? found.value.params : [];\n};\n\n/** The declared type of a parameter, unwrapping `private readonly x: X`. */\nconst annotationOf = (param: Node): Node | undefined => {\n const inner = isParameterProperty(param) ? param.parameter : param;\n if (!isIdentifier(inner)) return undefined;\n return inner.typeAnnotation?.typeAnnotation;\n};\n\n/**\n * One entry per constructor parameter. A parameter whose type names something\n * that exists at runtime becomes that expression; anything else becomes an\n * `unresolved` descriptor so the container can name it precisely at boot instead\n * of constructing a broken object.\n */\nconst entryFor = (\n source: string,\n param: Node,\n erased: ReadonlySet<string>,\n): string => {\n const unresolved = `{ unresolved: ${JSON.stringify(slice(source, param))} }`;\n const annotation = annotationOf(param);\n\n if (!annotation || !isTypeReference(annotation)) return unresolved;\n\n const token = slice(source, annotation.typeName);\n // A qualified name (`ns.Thing`) is a runtime value; a bare erased name is not.\n if (erased.has(token)) return unresolved;\n\n return token;\n};\n\n/**\n * Records each class's constructor dependencies, and each decorated field's\n * declared type, as thunks on the class itself.\n *\n * A thunk, not a literal: the body is evaluated when the record is read rather\n * than when the module is defined, so a dependency declared later in the file —\n * or in a circular import is not a temporal-dead-zone crash. That is what\n * removes the need for Nest's `forwardRef`, and it is also why a class decorator\n * cannot read the field record while it runs: the statement is appended after the\n * class, which is after decoration.\n */\nexport const transform = (\n source: string,\n filename = 'input.ts',\n): TransformResult => {\n const parsed = parseSync(filename, source);\n\n if (parsed.errors.length > 0) {\n const detail = parsed.errors\n .slice(0, 3)\n .map((error) => error.message)\n .join('; ');\n throw new Error(`${filename}: could not parse ${detail}`);\n }\n\n const program = parsed.program;\n const typeOnly = collectTypeOnlyNames(program);\n const edits: Edit[] = [];\n const annotated: string[] = [];\n\n walk(program, (node) => {\n if (!isClassDeclaration(node)) return;\n\n const name = node.id?.name;\n if (name === undefined) return;\n\n const erased = erasedNames(typeOnly, node);\n const params = constructorParams(node);\n\n if (params.length > 0) {\n const entries = params.map((param) => entryFor(source, param, erased));\n annotated.push(name);\n edits.push({\n start: node.end,\n end: node.end,\n text:\n `\\nObject.defineProperty(${name}, ${DEPS_KEY}, {\\n` +\n ` value: () => [${entries.join(', ')}],\\n});`,\n });\n }\n });\n\n const code = applyEdits(source, edits);\n return { code, changed: code !== source, annotated };\n};\n",
7
- "/**\n * Minimal structural views over oxc's ESTree output only the node shapes the\n * dependency transform reads. Verified against real `oxc-parser` output.\n */\nexport interface Node {\n readonly type: string;\n readonly start: number;\n readonly end: number;\n}\n\nexport interface Identifier extends Node {\n readonly type: 'Identifier';\n readonly name: string;\n readonly typeAnnotation?: TSTypeAnnotation | null;\n}\n\nexport interface ClassBody extends Node {\n readonly type: 'ClassBody';\n readonly body: readonly Node[];\n}\n\n/** `ClassDeclaration` and `ClassExpression` share every field read here. */\nexport interface ClassNode extends Node {\n readonly id: Identifier | null;\n readonly typeParameters: Node | null;\n readonly body: ClassBody;\n}\n\nexport interface FunctionExpression extends Node {\n readonly params: readonly Node[];\n}\n\nexport interface MethodDefinition extends Node {\n readonly type: 'MethodDefinition';\n readonly key: Node;\n readonly value: FunctionExpression;\n}\n\nexport interface TSParameterProperty extends Node {\n readonly type: 'TSParameterProperty';\n readonly parameter: Node;\n}\n\nexport interface TSTypeAnnotation extends Node {\n readonly type: 'TSTypeAnnotation';\n readonly typeAnnotation: Node;\n}\n\nexport interface TSTypeReference extends Node {\n readonly type: 'TSTypeReference';\n readonly typeName: Node;\n}\n\nexport interface ImportDeclaration extends Node {\n readonly type: 'ImportDeclaration';\n readonly specifiers: readonly Node[];\n readonly importKind: 'value' | 'type';\n}\n\nexport interface ImportSpecifier extends Node {\n readonly type: 'ImportSpecifier';\n readonly local: Identifier;\n readonly importKind: 'value' | 'type';\n}\n\nconst guard =\n <T extends Node>(type: T['type']) =>\n (node: Node | null | undefined): node is T =>\n node?.type === type;\n\nexport const isIdentifier = guard<Identifier>('Identifier');\nexport const isMethodDefinition = guard<MethodDefinition>('MethodDefinition');\nexport const isTypeReference = guard<TSTypeReference>('TSTypeReference');\nexport const isImportDeclaration =\n guard<ImportDeclaration>('ImportDeclaration');\nexport const isImportSpecifier = guard<ImportSpecifier>('ImportSpecifier');\nexport const isParameterProperty = guard<TSParameterProperty>(\n 'TSParameterProperty',\n);\n\n/**\n * Declarations only. A `ClassExpression`'s own name is bound inside the class\n * body, not outside it, so a statement appended after `const X = class Foo {}`\n * could not reference `Foo` it would be a ReferenceError at load.\n */\nexport const isClassDeclaration = (node: Node): node is ClassNode =>\n node.type === 'ClassDeclaration';\n\n/**\n * Depth-first over every object in the tree. oxc's ESTree output is a plain\n * object graph with no parent links, so recursing every own value is safe and\n * needs no visitor-key table.\n */\nexport const walk = (root: unknown, visit: (node: Node) => void): void => {\n if (Array.isArray(root)) {\n for (const child of root) walk(child, visit);\n return;\n }\n if (root === null || typeof root !== 'object') return;\n\n const candidate = root as Partial<Node>;\n if (\n typeof candidate.type === 'string' &&\n typeof candidate.start === 'number' &&\n typeof candidate.end === 'number'\n ) {\n visit(root as Node);\n }\n\n for (const child of Object.values(root)) walk(child, visit);\n};\n\nexport const nameOf = (node: Node | null | undefined): string | undefined =>\n isIdentifier(node) ? node.name : undefined;\n",
8
- "export interface Edit {\n readonly start: number;\n readonly end: number;\n readonly text: string;\n}\n\n/**\n * Splices edits into the original text rather than reprinting the AST, so\n * everything untouched keeps its exact bytes comments, formatting, and the\n * line numbers stack traces point at.\n */\nexport const applyEdits = (source: string, edits: readonly Edit[]): string => {\n const sorted = [...edits].sort(\n (left, right) => left.start - right.start || left.end - right.end,\n );\n\n let out = '';\n let cursor = 0;\n\n for (const edit of sorted) {\n if (edit.start < cursor) {\n throw new Error(\n `Overlapping edit at ${edit.start}..${edit.end}; the previous edit ended ` +\n `at ${cursor}.`,\n );\n }\n out += source.slice(cursor, edit.start) + edit.text;\n cursor = edit.end;\n }\n\n return out + source.slice(cursor);\n};\n",
6
+ "import { parseSync } from 'oxc-parser';\nimport {\n isClassDeclaration,\n isIdentifier,\n isMethodDefinition,\n isParameterProperty,\n isTypeReference,\n nameOf,\n walk,\n type ClassNode,\n type Node,\n} from './ast.js';\nimport { applyEdits, type Edit } from './edits.js';\nimport { collectTypeOnlyNames, erasedNames } from './erased.js';\n\n/**\n * `Symbol.for`, not `Symbol`: two copies of `@dunx/core` in one dependency tree\n * still agree on the key. Same technique as module and route markers.\n */\nconst DEPS_KEY = \"Symbol.for('dunx.deps')\";\n\nexport interface TransformResult {\n readonly code: string;\n readonly changed: boolean;\n /** Classes that received dependency metadata, in source order. */\n readonly annotated: readonly string[];\n}\n\nconst slice = (source: string, node: Node): string =>\n source.slice(node.start, node.end);\n\nconst constructorParams = (klass: ClassNode): readonly Node[] => {\n const found = klass.body.body.find(\n (member) =>\n isMethodDefinition(member) && nameOf(member.key) === 'constructor',\n );\n return isMethodDefinition(found) ? found.value.params : [];\n};\n\n/** The declared type of a parameter, unwrapping `private readonly x: X`. */\nconst annotationOf = (param: Node): Node | undefined => {\n const inner = isParameterProperty(param) ? param.parameter : param;\n if (!isIdentifier(inner)) return undefined;\n return inner.typeAnnotation?.typeAnnotation;\n};\n\n/**\n * One entry per constructor parameter. A parameter whose type names something\n * that exists at runtime becomes that expression; anything else becomes an\n * `unresolved` descriptor so the container can name it precisely at boot instead\n * of constructing a broken object.\n */\nconst entryFor = (\n source: string,\n param: Node,\n erased: ReadonlySet<string>,\n): string => {\n const unresolved = `{ unresolved: ${JSON.stringify(slice(source, param))} }`;\n const annotation = annotationOf(param);\n\n if (!annotation || !isTypeReference(annotation)) return unresolved;\n\n const token = slice(source, annotation.typeName);\n // A qualified name (`ns.Thing`) is a runtime value; a bare erased name is not.\n if (erased.has(token)) return unresolved;\n\n return token;\n};\n\n/**\n * Records each class's constructor dependencies, and each decorated field's\n * declared type, as thunks on the class itself.\n *\n * A thunk, not a literal: the body is evaluated when the record is read rather\n * than when the module is defined, so a dependency declared later in the file -\n * or in a circular import - is not a temporal-dead-zone crash. That is what\n * removes the need for Nest's `forwardRef`, and it is also why a class decorator\n * cannot read the field record while it runs: the statement is appended after the\n * class, which is after decoration.\n */\nexport const transform = (\n source: string,\n filename = 'input.ts',\n): TransformResult => {\n const parsed = parseSync(filename, source);\n\n if (parsed.errors.length > 0) {\n const detail = parsed.errors\n .slice(0, 3)\n .map((error) => error.message)\n .join('; ');\n throw new Error(`${filename}: could not parse - ${detail}`);\n }\n\n const program = parsed.program;\n const typeOnly = collectTypeOnlyNames(program);\n const edits: Edit[] = [];\n const annotated: string[] = [];\n\n walk(program, (node) => {\n if (!isClassDeclaration(node)) return;\n\n const name = node.id?.name;\n if (name === undefined) return;\n\n const erased = erasedNames(typeOnly, node);\n const params = constructorParams(node);\n\n if (params.length > 0) {\n const entries = params.map((param) => entryFor(source, param, erased));\n annotated.push(name);\n edits.push({\n start: node.end,\n end: node.end,\n text:\n `\\nObject.defineProperty(${name}, ${DEPS_KEY}, {\\n` +\n ` value: () => [${entries.join(', ')}],\\n});`,\n });\n }\n });\n\n const code = applyEdits(source, edits);\n return { code, changed: code !== source, annotated };\n};\n",
7
+ "/**\n * Minimal structural views over oxc's ESTree output - only the node shapes the\n * dependency transform reads. Verified against real `oxc-parser` output.\n */\nexport interface Node {\n readonly type: string;\n readonly start: number;\n readonly end: number;\n}\n\nexport interface Identifier extends Node {\n readonly type: 'Identifier';\n readonly name: string;\n readonly typeAnnotation?: TSTypeAnnotation | null;\n}\n\nexport interface ClassBody extends Node {\n readonly type: 'ClassBody';\n readonly body: readonly Node[];\n}\n\n/** `ClassDeclaration` and `ClassExpression` share every field read here. */\nexport interface ClassNode extends Node {\n readonly id: Identifier | null;\n readonly typeParameters: Node | null;\n readonly body: ClassBody;\n}\n\nexport interface FunctionExpression extends Node {\n readonly params: readonly Node[];\n}\n\nexport interface MethodDefinition extends Node {\n readonly type: 'MethodDefinition';\n readonly key: Node;\n readonly value: FunctionExpression;\n}\n\nexport interface TSParameterProperty extends Node {\n readonly type: 'TSParameterProperty';\n readonly parameter: Node;\n}\n\nexport interface TSTypeAnnotation extends Node {\n readonly type: 'TSTypeAnnotation';\n readonly typeAnnotation: Node;\n}\n\nexport interface TSTypeReference extends Node {\n readonly type: 'TSTypeReference';\n readonly typeName: Node;\n}\n\nexport interface ImportDeclaration extends Node {\n readonly type: 'ImportDeclaration';\n readonly specifiers: readonly Node[];\n readonly importKind: 'value' | 'type';\n}\n\nexport interface ImportSpecifier extends Node {\n readonly type: 'ImportSpecifier';\n readonly local: Identifier;\n readonly importKind: 'value' | 'type';\n}\n\nconst guard =\n <T extends Node>(type: T['type']) =>\n (node: Node | null | undefined): node is T =>\n node?.type === type;\n\nexport const isIdentifier = guard<Identifier>('Identifier');\nexport const isMethodDefinition = guard<MethodDefinition>('MethodDefinition');\nexport const isTypeReference = guard<TSTypeReference>('TSTypeReference');\nexport const isImportDeclaration =\n guard<ImportDeclaration>('ImportDeclaration');\nexport const isImportSpecifier = guard<ImportSpecifier>('ImportSpecifier');\nexport const isParameterProperty = guard<TSParameterProperty>(\n 'TSParameterProperty',\n);\n\n/**\n * Declarations only. A `ClassExpression`'s own name is bound inside the class\n * body, not outside it, so a statement appended after `const X = class Foo {}`\n * could not reference `Foo` - it would be a ReferenceError at load.\n */\nexport const isClassDeclaration = (node: Node): node is ClassNode =>\n node.type === 'ClassDeclaration';\n\n/**\n * Depth-first over every object in the tree. oxc's ESTree output is a plain\n * object graph with no parent links, so recursing every own value is safe and\n * needs no visitor-key table.\n */\nexport const walk = (root: unknown, visit: (node: Node) => void): void => {\n if (Array.isArray(root)) {\n for (const child of root) walk(child, visit);\n return;\n }\n if (root === null || typeof root !== 'object') return;\n\n const candidate = root as Partial<Node>;\n if (\n typeof candidate.type === 'string' &&\n typeof candidate.start === 'number' &&\n typeof candidate.end === 'number'\n ) {\n visit(root as Node);\n }\n\n for (const child of Object.values(root)) walk(child, visit);\n};\n\nexport const nameOf = (node: Node | null | undefined): string | undefined =>\n isIdentifier(node) ? node.name : undefined;\n",
8
+ "export interface Edit {\n readonly start: number;\n readonly end: number;\n readonly text: string;\n}\n\n/**\n * Splices edits into the original text rather than reprinting the AST, so\n * everything untouched keeps its exact bytes - comments, formatting, and the\n * line numbers stack traces point at.\n */\nexport const applyEdits = (source: string, edits: readonly Edit[]): string => {\n const sorted = [...edits].sort(\n (left, right) => left.start - right.start || left.end - right.end,\n );\n\n let out = '';\n let cursor = 0;\n\n for (const edit of sorted) {\n if (edit.start < cursor) {\n throw new Error(\n `Overlapping edit at ${edit.start}..${edit.end}; the previous edit ended ` +\n `at ${cursor}.`,\n );\n }\n out += source.slice(cursor, edit.start) + edit.text;\n cursor = edit.end;\n }\n\n return out + source.slice(cursor);\n};\n",
9
9
  "import {\n isImportDeclaration,\n isImportSpecifier,\n nameOf,\n walk,\n type ClassNode,\n type Node,\n} from './ast.js';\n\n/**\n * Names that exist only in the type system, so emitting them in a value position\n * would be a `ReferenceError` at runtime. Collected per file: type-only imports,\n * inline `type` specifiers, local interfaces and type aliases.\n */\nexport const collectTypeOnlyNames = (program: Node): ReadonlySet<string> => {\n const names = new Set<string>();\n\n walk(program, (node) => {\n if (isImportDeclaration(node)) {\n for (const specifier of node.specifiers) {\n if (!isImportSpecifier(specifier)) continue;\n if (node.importKind === 'type' || specifier.importKind === 'type') {\n names.add(specifier.local.name);\n }\n }\n return;\n }\n\n if (\n node.type === 'TSInterfaceDeclaration' ||\n node.type === 'TSTypeAliasDeclaration'\n ) {\n const declared = (node as { id?: Node }).id;\n const name = nameOf(declared);\n if (name !== undefined) names.add(name);\n }\n });\n\n return names;\n};\n\n/** A class's own type parameters are erased, so `T` is never a usable token. */\nexport const collectTypeParameters = (\n klass: ClassNode,\n): ReadonlySet<string> => {\n const names = new Set<string>();\n if (klass.typeParameters === null) return names;\n\n walk(klass.typeParameters, (node) => {\n if (node.type !== 'TSTypeParameter') return;\n const name = nameOf((node as { name?: Node }).name);\n if (name !== undefined) names.add(name);\n });\n\n return names;\n};\n\n/** Every name in this file that a value position cannot use. */\nexport const erasedNames = (\n typeOnly: ReadonlySet<string>,\n klass: ClassNode,\n): ReadonlySet<string> =>\n new Set([...typeOnly, ...collectTypeParameters(klass)]);\n",
10
- "import type { BunPlugin } from 'bun';\nimport { transform } from './deps.js';\n\n/**\n * Rewrites TypeScript as it is loaded so the container can read constructor\n * dependencies. Usable in three places, all the same object:\n *\n * - `bunfig.toml` -> `preload = [\"@dunx/transform/preload\"]` for `bun run`\n * - `Bun.build({ plugins: [depsPlugin] })` for a production build\n * - `Bun.plugin(depsPlugin)` from a test preload\n *\n * Dependencies are skipped: a published package was already transformed by its\n * own build, and re-parsing `node_modules` on every load is pure cost.\n */\nexport const depsPlugin: BunPlugin = {\n name: 'dunx-deps',\n setup(build) {\n // A runtime plugin's onLoad must always return a result there is no\n // \"decline and fall through\", so untransformed files are handed back as-is.\n build.onLoad({ filter: /\\.tsx?$/ }, async ({ path }) => {\n const source = await Bun.file(path).text();\n const loader = path.endsWith('.tsx') ? 'tsx' : 'ts';\n\n if (path.includes('/node_modules/')) return { contents: source, loader };\n\n return { contents: transform(source, path).code, loader };\n });\n },\n};\n"
10
+ "import type { BunPlugin } from 'bun';\nimport { transform } from './deps.js';\n\n/**\n * Rewrites TypeScript as it is loaded so the container can read constructor\n * dependencies. Usable in three places, all the same object:\n *\n * - `bunfig.toml` -> `preload = [\"@dunx/transform/preload\"]` for `bun run`\n * - `Bun.build({ plugins: [depsPlugin] })` for a production build\n * - `Bun.plugin(depsPlugin)` from a test preload\n *\n * Dependencies are skipped: a published package was already transformed by its\n * own build, and re-parsing `node_modules` on every load is pure cost.\n */\nexport const depsPlugin: BunPlugin = {\n name: 'dunx-deps',\n setup(build) {\n // A runtime plugin's onLoad must always return a result - there is no\n // \"decline and fall through\", so untransformed files are handed back as-is.\n build.onLoad({ filter: /\\.tsx?$/ }, async ({ path }) => {\n const source = await Bun.file(path).text();\n const loader = path.endsWith('.tsx') ? 'tsx' : 'ts';\n\n if (path.includes('/node_modules/')) return { contents: source, loader };\n\n return { contents: transform(source, path).code, loader };\n });\n },\n};\n"
11
11
  ],
12
- "mappings": "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",
13
- "debugId": "BAAA0FE7F215564464756E2164756E21",
12
+ "mappings": "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",
13
+ "debugId": "55264012164FD10D64756E2164756E21",
14
14
  "names": []
15
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dunx/transform",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Load-time transform that records constructor dependencies for the dunx container",
5
5
  "keywords": [
6
6
  "bun",
@@ -10,7 +10,7 @@
10
10
  "transform"
11
11
  ],
12
12
  "homepage": "https://github.com/petarzarkov/dunx/tree/main/packages/transform#readme",
13
- "license": "MIT",
13
+ "license": "Apache-2.0",
14
14
  "author": {
15
15
  "name": "Petar Zarkov",
16
16
  "email": "pzarko1@gmail.com",