Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit e31a136

Browse files
authored
Make a single output file using esbuild (#124)
1 parent 54dfe2f commit e31a136

File tree

5 files changed

+943
-896
lines changed

5 files changed

+943
-896
lines changed

.github/workflows/push.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
run: npm install
2222
- name: lint
2323
run: npm run lint
24-
- name: build
25-
run: npm run build
2624
- name: compile typescript
2725
run: npx tsc
2826
- name: test
@@ -33,3 +31,5 @@ jobs:
3331
run: npx c8 check-coverage --lines 99 --functions 99 --branches 99 --statements 99
3432
- name: examples do not crash
3533
run: for f in examples/*.ts; do npx tsx "$f" || (echo "'$f' crashed"; exit 1); done
34+
- name: build
35+
run: npm run build

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [22.0.0]
11+
12+
### Changed
13+
14+
- We now emit a single JS file in the `dist` directory rather than several JS module files. No need for ESM or CJS subdirectories anymore.
15+
1016
## [21.2.0]
1117

1218
### Changed

examples/roundtrip.ts

-45
This file was deleted.

0 commit comments

Comments
 (0)