@clossys/architect 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 +21 -0
- package/LICENSE +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ All notable changes to this package are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.4] - 2026-09-02
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Declared `bin` targets without a leading `./`. npm rejected the dotted
|
|
13
|
+
form as an invalid script name and **removed the entry entirely** on
|
|
14
|
+
publish, so `architect-check` would not have been installed
|
|
15
|
+
by a consumer of the previous release.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Named Clossys as copyright holder in `LICENSE` and as `author` in the
|
|
20
|
+
package manifest, so every package in the catalogue attributes identically.
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [0.1.3] - 2026-08-31
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Prepared a bounded trusted-publisher patch source for provenance after the owner-present first publication and anonymous registry verification. This change does not publish the package or claim provenance.
|
|
28
|
+
|
|
8
29
|
## [0.1.2] - 2026-08-30
|
|
9
30
|
|
|
10
31
|
### Changed
|
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clossys/architect",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
21
|
-
"architect-check": "
|
|
21
|
+
"architect-check": "dist/cli.js"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"validation",
|
|
39
39
|
"typescript"
|
|
40
40
|
],
|
|
41
|
-
"author": "
|
|
41
|
+
"author": "Clossys",
|
|
42
42
|
"repository": {
|
|
43
43
|
"type": "git",
|
|
44
44
|
"url": "git+https://github.com/clossys/foundry.git",
|