Skip to content

Commit 5865226

Browse files
committed
Replace browserify w/ esbuild
1 parent f2eeef7 commit 5865226

8 files changed

Lines changed: 24313 additions & 31981 deletions

File tree

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For items that are not-applicable, mark "N/A" and ✔.
1111
- [ ] Code coverage has not gone down and all code touched or added is covered.
1212
- [ ] Code passes lint and prettier (hint: use `npm run check` to run tests, lint, and prettier)
1313
- [ ] All dependent libraries are appropriately updated or have a corresponding PR related to this change
14-
- [ ] `cql4browsers.js` built with `npm run build:browserify` if source changed.
14+
- [ ] `cql4browsers.js` built with `npm run build:browser` if source changed.
1515

1616
**Reviewer:**
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,5 +358,5 @@ If TypeScript source code is modified, `cql4browsers.js` needs to be included in
358358
otherwise GitHub Actions CI will fail. To generate this file, run:
359359

360360
```
361-
npm run build:browserify
361+
npm run build:browser
362362
```

bin/browserify.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

bin/validate_cql4browsers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mv ./examples/browser/cql4browsers.js.original ./examples/browser/cql4browsers.j
2222

2323
# Exit with a non-zero code if the diff isn't empty
2424
if [ "$diff" != "" ]; then
25-
echo "cql4browsers.js is out of date. Please run 'npm install' locally and commit/push the result"
25+
echo "cql4browsers.js is out of date. Please run 'npm run build:browser' locally and commit/push the result"
2626
exit 1
2727
fi
2828

0 commit comments

Comments
 (0)