@clossys/butler 0.1.2 → 0.1.3

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 (3) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/LICENSE +1 -1
  3. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,21 @@
3
3
  All notable changes to this package are documented here. Format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
5
 
6
+ ## [0.1.3] - 2026-09-02
7
+
8
+ ### Fixed
9
+
10
+ - Declared `bin` targets without a leading `./`. npm rejected the dotted
11
+ form as an invalid script name and **removed the entry entirely** on
12
+ publish, so `butler-check` would not have been installed
13
+ by a consumer of the previous release.
14
+
15
+ ### Changed
16
+
17
+ - Named Clossys as copyright holder in `LICENSE` and as `author` in the
18
+ package manifest, so every package in the catalogue attributes identically.
19
+
20
+
6
21
  ## [0.1.2] - 2026-08-31
7
22
 
8
23
  ### Changed
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Calvin Hung
3
+ Copyright (c) 2026 Clossys
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clossys/butler",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -22,7 +22,7 @@
22
22
  }
23
23
  },
24
24
  "bin": {
25
- "butler-check": "./dist/cli.js"
25
+ "butler-check": "dist/cli.js"
26
26
  },
27
27
  "files": [
28
28
  "dist",
@@ -44,7 +44,7 @@
44
44
  "gate",
45
45
  "typescript"
46
46
  ],
47
- "author": "Calvin Hung",
47
+ "author": "Clossys",
48
48
  "repository": {
49
49
  "type": "git",
50
50
  "url": "git+https://github.com/clossys/foundry.git",
@@ -76,10 +76,10 @@
76
76
  }
77
77
  },
78
78
  "devDependencies": {
79
- "@testing-library/react": "^16.3.2",
79
+ "@testing-library/react": "^16.3.3",
80
80
  "@types/node": "^22.10.0",
81
81
  "@types/react": "^19.2.0",
82
- "@types/react-dom": "^19.2.0",
82
+ "@types/react-dom": "^19.2.5",
83
83
  "jsdom": "^26.1.0",
84
84
  "react": "^19.2.8",
85
85
  "react-dom": "^19.2.8",