@clossys/butler 0.1.2 → 0.1.4
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 +28 -0
- package/LICENSE +1 -1
- package/README.md +3 -2
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.4] - 2026-09-16
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- The Install section told a consumer this package requires a GitHub
|
|
11
|
+
personal access token with `read:packages`, pointing at the repository
|
|
12
|
+
root README for confirmation. That pointer led to a section describing
|
|
13
|
+
an unrelated, still-token-gated set of packages — corroborating evidence
|
|
14
|
+
for a claim that has never been true of `@clossys/butler`, which
|
|
15
|
+
publishes to `https://registry.npmjs.org` with public access and
|
|
16
|
+
installs anonymously. A reader following the instruction as written
|
|
17
|
+
would create a credential this package never asks for. (#924)
|
|
18
|
+
|
|
19
|
+
## [0.1.3] - 2026-09-02
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Declared `bin` targets without a leading `./`. npm rejected the dotted
|
|
24
|
+
form as an invalid script name and **removed the entry entirely** on
|
|
25
|
+
publish, so `butler-check` would not have been installed
|
|
26
|
+
by a consumer of the previous release.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- Named Clossys as copyright holder in `LICENSE` and as `author` in the
|
|
31
|
+
package manifest, so every package in the catalogue attributes identically.
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
## [0.1.2] - 2026-08-31
|
|
7
35
|
|
|
8
36
|
### Changed
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -44,8 +44,9 @@ Two rules follow, and both are structural here rather than advisory:
|
|
|
44
44
|
npm install @clossys/butler
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
`
|
|
47
|
+
The package publishes to the public npm registry
|
|
48
|
+
(`https://registry.npmjs.org`) with public access; installing it needs no
|
|
49
|
+
GitHub token or other credential.
|
|
49
50
|
|
|
50
51
|
```ts
|
|
51
52
|
import { checkCurrency, evaluateStandingInstruction } from "@clossys/butler";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clossys/butler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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": "
|
|
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": "
|
|
47
|
+
"author": "Clossys",
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|
|
50
50
|
"url": "git+https://github.com/clossys/foundry.git",
|
|
@@ -76,15 +76,15 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@testing-library/react": "^16.3.
|
|
80
|
-
"@types/node": "^
|
|
81
|
-
"@types/react": "^19.
|
|
82
|
-
"@types/react-dom": "^19.
|
|
79
|
+
"@testing-library/react": "^16.3.3",
|
|
80
|
+
"@types/node": "^26.5.1",
|
|
81
|
+
"@types/react": "^19.3.0",
|
|
82
|
+
"@types/react-dom": "^19.3.0",
|
|
83
83
|
"jsdom": "^26.1.0",
|
|
84
|
-
"react": "^19.
|
|
85
|
-
"react-dom": "^19.
|
|
84
|
+
"react": "^19.3.0",
|
|
85
|
+
"react-dom": "^19.3.0",
|
|
86
86
|
"typescript": "~6.0.0",
|
|
87
|
-
"vitest": "^
|
|
87
|
+
"vitest": "^5.0.0"
|
|
88
88
|
},
|
|
89
89
|
"publishConfig": {
|
|
90
90
|
"registry": "https://registry.npmjs.org",
|