Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
antho-bunny committed Aug 14, 2024
1 parent 57d03d3 commit 911191c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/wild-beds-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bunny.net/edgescript-sdk": patch
---

Bump
2 changes: 1 addition & 1 deletion .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.BUNNY_GITHUB }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
publish: "pnpm run -r build && pnpm changeset publish"
publish: "pnpm run release"
title: "🎉 Release"
createGithubReleases: true
3 changes: 2 additions & 1 deletion example/deno-simple-http-page/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"lint": "deno lint",
"test": "deno test",
"build": "echo \"No build with Deno!\"",
"dev": "deno run src/main.ts"
"dev": "deno run src/main.ts",
"release": "echo \"No release\""
},
"dependencies": {
"@bunny.net/edgescript-sdk": "workspace:*"
Expand Down
3 changes: 2 additions & 1 deletion example/simple-http-page/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"scripts": {
"lint": "eslint src",
"test": "jest --silent --coverage",
"build": "ncc build src/main.ts -o dist/"
"build": "ncc build src/main.ts -o dist/",
"release": "echo \"No release\""
},
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion libs/bunny-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"scripts": {
"lint": "eslint src",
"test": "jest --silent --coverage",
"build": "rm -rf dist esm esm-bunny && node build.mjs"
"build": "rm -rf dist esm esm-bunny && node build.mjs",
"release": "rm -rf dist esm esm-bunny && node build.mjs && pnpm changeset publish"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 911191c

Please sign in to comment.