@wipcomputer/wip-release 1.1.0 → 1.1.1

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+
5
+ ## 1.1.1 (2026-02-21)
6
+
7
+ Fix npm bin entry: rename cli.mjs to cli.js
8
+
4
9
  ## 1.1.0 (2026-02-21)
5
10
 
6
11
  Rich release notes, agent-driven install prompt, REFERENCE.md
package/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: wip-release
3
- version: 1.1.0
3
+ version: 1.1.1
4
4
  description: Local release tool. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.
5
5
  homepage: https://github.com/wipcomputer/wip-release
6
6
  metadata:
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-release",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "description": "Local release tool. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.",
6
6
  "main": "core.mjs",
7
7
  "bin": {
8
- "wip-release": "./cli.mjs"
8
+ "wip-release": "./cli.js"
9
9
  },
10
10
  "exports": {
11
11
  ".": "./core.mjs",
12
- "./cli": "./cli.mjs"
12
+ "./cli": "./cli.js"
13
13
  },
14
14
  "scripts": {
15
15
  "test": "node cli.mjs --help"
File without changes