Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
axuj committed Jul 17, 2024
1 parent 53f4d97 commit a4e8601
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "webext-rpc",
"version": "1.0.3",
"version": "1.0.4",
"packageManager": "[email protected]",
"description": "A type-safe RPC for all webextension, client side code does not contain the actual called code, supports async generator functions",
"type": "module",
"publishConfig": {
Expand All @@ -26,7 +27,7 @@
"build": "tsup src/index.ts src/utils/index.ts --clean --out-dir lib --dts --format esm,cjs,iife --global-name webextRPC",
"test": "vitest",
"buildWhithDemo": "pnpm run build && cd demo && pnpm install && pnpm run dev",
"publish:ci": "tsx scripts/release.ts"
"publish:ci": "tsx script/release.ts"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion script/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { $, cd } from 'zx'

async function release() {
await $`pnpm run build`
await $`pnpm publish`
await $`npm publish`
}

release()

0 comments on commit a4e8601

Please sign in to comment.