openwrangler 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "openwrangler",
3
3
  "type": "module",
4
- "version": "0.0.8",
4
+ "version": "0.0.9",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  "typescript": "^5.7.2",
23
23
  "unbuild": "^3.3.1",
24
24
  "wrangler": "^4.54.0",
25
- "@bino0216/nitro-cloudflare-dev": "0.2.7"
25
+ "@bino0216/nitro-cloudflare-dev": "0.2.9"
26
26
  },
27
27
  "scripts": {
28
28
  "dev": "cd ./playground && pnpm dev",
@@ -30,7 +30,10 @@
30
30
  "lint": "eslint .",
31
31
  "lint:fix": "eslint . --fix",
32
32
  "deploy": "run-s deploy.patch deploy.build deploy.publish",
33
- "deploy.patch": "pnpm version patch --no-git-tag-version && pnpm --filter @bino0216/nitro-cloudflare-dev version patch --no-git-tag-version && git add . && git commit -m \"chore: release\"",
33
+ "deploy.patch": "pnpm version patch --no-git-tag-version && cd packages/nitro-cloudflare-dev && pnpm version patch --no-git-tag-version && git add . && git commit -m \"chore: release\"",
34
+ "deploy.patch.root": "pnpm version patch --no-git-tag-version",
35
+ "deploy.patch.nitro-cloudflare-dev": "cd packages/nitro-cloudflare-dev && pnpm version patch --no-git-tag-version",
36
+ "deploy.patch.commit": "git add . && git commit -m \"chore: release\"",
34
37
  "deploy.build": "pnpm build && pnpm --filter @bino0216/nitro-cloudflare-dev build",
35
38
  "deploy.publish": "pnpm publish --no-git-checks && pnpm --filter @bino0216/nitro-cloudflare-dev publish --no-git-checks"
36
39
  }