We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b083584 commit ad6e65cCopy full SHA for ad6e65c
.github/workflows/node.yml
@@ -28,6 +28,10 @@ jobs:
28
- name: Run tests
29
run: bun test
30
working-directory: node/
31
+
32
+ - name: Build
33
+ run: bun pack
34
+ working-directory: node/
35
36
# - name: Upload test results (optional)
37
# uses: actions/upload-artifact@v3
node/package.json
@@ -3,7 +3,9 @@
3
"scripts": {
4
"dev": "bun examples/realtime-events.ts",
5
"format": "prettier --config .prettierrc.json --write \"**/*.{ts,md}\"",
6
- "type-check": "tsc"
+ "type-check": "tsc",
7
+ "clean": "rm -rf dist",
8
+ "pack": "bun clean && bun build src/index.ts --outdir dist"
9
},
10
"dependencies": {},
11
"devDependencies": {
0 commit comments