preact-hashish-router 0.1.3 → 0.1.5

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 +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "preact-hashish-router",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "description": "A simple router for preact",
@@ -11,9 +11,10 @@
11
11
  "app:dev": "vite",
12
12
  "build": "rm -rf ./dist && bun run types && bun run bundle",
13
13
  "prepublishOnly": "bun run types && bun run bundle",
14
- "push": "npm version patch && git push",
15
- "push-minor": "npm version minor && git push",
16
- "push-major": "npm version major && git push"
14
+ "patch": "bun pm version patch && git push",
15
+ "minor": "bun pm version minor && git push",
16
+ "major": "bun pm version major && git push",
17
+ "release": "changelogen --release --push && bun publish"
17
18
  },
18
19
  "exports": {
19
20
  ".": "./dist/index.js"