Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
path: npm-debug.log
- name: Lint
run: npm run lint
- name: Type Check
run: npm run check-types
- name: Test
run: npm test
- name: Report Coverage
Expand Down
1 change: 1 addition & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env sh
npm run prettier:check
npm run lint
npm run check-types
npm test
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ See [docs/esm-to-cjs.md](docs/esm-to-cjs.md) for deeper notes on live bindings,

## Roadmap

- Remove `@knighted/specifier` and avoid double parsing.
- Emit source maps and clearer diagnostics for transform choices.
- Broaden fixtures covering live-binding and top-level await edge cases across Node versions.
- Benchmark scope analysis choices: compare `periscopic`, `scope-analyzer`, and `eslint-scope` on fixtures and pick the final adapter.
2 changes: 1 addition & 1 deletion babel.config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"targets": "node >= 20.11.0",
"targets": "node >= 22.21.1",
"presets": [
[
"@babel/preset-env",
Expand Down
324 changes: 2 additions & 322 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading