Skip to content

Commit 1d3c393

Browse files
committed
v0.1.1
1 parent fba3f20 commit 1d3c393

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ jobs:
7575
bun run build
7676
echo "✅ Build completed successfully"
7777
78+
- name: 📦 Install Example Dependencies
79+
working-directory: ./example
80+
run: bun install --frozen-lockfile
81+
7882
- name: 🧪 Run Full Test Suite
7983
run: |
8084
echo "Running comprehensive test suite before publish..."
@@ -189,8 +193,8 @@ jobs:
189193
echo "Running publish dry run..."
190194
# Create .npmrc for authentication
191195
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > .npmrc
192-
# Use bun to create tarball
193-
bun pack
196+
# Use npm to create tarball and test
197+
npm pack
194198
echo "✅ Dry run completed successfully"
195199
env:
196200
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "elysia-http-exception",
33
"description": "Elysia plugin for handling HTTP 4xx and 5xx errors with structured exception classes and automatic error responses",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/codev911/elysia-http-exception"

0 commit comments

Comments
 (0)