@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 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
@@ -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/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
- Installing from this registry needs a GitHub personal access token with
48
- `read:packages` see the repository root README.
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.2",
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": "./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,15 +76,15 @@
76
76
  }
77
77
  },
78
78
  "devDependencies": {
79
- "@testing-library/react": "^16.3.2",
80
- "@types/node": "^22.10.0",
81
- "@types/react": "^19.2.0",
82
- "@types/react-dom": "^19.2.0",
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.2.8",
85
- "react-dom": "^19.2.8",
84
+ "react": "^19.3.0",
85
+ "react-dom": "^19.3.0",
86
86
  "typescript": "~6.0.0",
87
- "vitest": "^4.1.9"
87
+ "vitest": "^5.0.0"
88
88
  },
89
89
  "publishConfig": {
90
90
  "registry": "https://registry.npmjs.org",