feat: update examples with writeback and webhook integration#10
feat: update examples with writeback and webhook integration#10khaliqgant merged 6 commits intomainfrom
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
be496ef to
b72a923
Compare
| "types": "dist/src/index.d.ts", | ||
| "bin": { | ||
| "adapter-core": "./dist/src/cli.js" | ||
| "adapter-core": "./dist/cli.js" |
There was a problem hiding this comment.
🔴 CLI bin path points to wrong location after rootDir change
The bin entry was changed from ./dist/src/cli.js to ./dist/cli.js, but the tsconfig.json rootDir was simultaneously changed from "src" to "." (packages/core/tsconfig.json). With rootDir: "." and outDir: "dist", src/cli.ts compiles to dist/src/cli.js — so the old path was actually correct for the new config. The main field was correctly updated to dist/src/index.js, but the bin field was changed in the opposite direction. Running npx adapter-core will fail with a "file not found" error because dist/cli.js won't exist.
| "adapter-core": "./dist/cli.js" | |
| "adapter-core": "./dist/src/cli.js" |
Was this helpful? React with 👍 or 👎 to provide feedback.
| ## Mapping YAML Specification | ||
|
|
||
| See [docs/MAPPING_YAML_SPEC.md](docs/MAPPING_YAML_SPEC.md) for the formal specification of the mapping YAML format used by `@relayfile/adapter-core`. |
There was a problem hiding this comment.
🟡 Duplicate "Mapping YAML Specification" section in README
The PR adds a second identical "## Mapping YAML Specification" heading and link at lines 158–160 of README.md, immediately below the existing one at lines 154–156. This creates a duplicate section in the rendered documentation.
| ## Mapping YAML Specification | |
| See [docs/MAPPING_YAML_SPEC.md](docs/MAPPING_YAML_SPEC.md) for the formal specification of the mapping YAML format used by `@relayfile/adapter-core`. |
Was this helpful? React with 👍 or 👎 to provide feedback.
Updates adapter examples with writeback support, webhook handling, and GitHub adapter integration. Replaces #5.