@mfittko/repo-wiki 0.2.1 → 0.2.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 +25 -0
- package/package.json +6 -2
- package/dist/test/fixtures/compiler-e2e/basic-node-service/repo/infra/deploy.d.ts +0 -1
- package/dist/test/fixtures/compiler-e2e/basic-node-service/repo/infra/deploy.js +0 -4
- package/dist/test/fixtures/compiler-e2e/basic-node-service/repo/infra/deploy.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,10 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.4] - 2026-06-13
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Add `repository` field to `package.json` so npm provenance validation passes during publish.
|
|
14
|
+
|
|
15
|
+
## [0.2.3] - 2026-06-13
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Switch npm publish to OIDC trusted publisher.
|
|
19
|
+
- Update build, CI, and release automation to support the change.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- Remove explicit `NODE_AUTH_TOKEN` from publish workflow so npm Trusted Publisher OIDC authentication works.
|
|
23
|
+
|
|
24
|
+
## [0.2.2] - 2026-06-13
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- Update build, CI, and release automation to support the change.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- Fix `package.json` bin path to use a relative path without leading `./`, preventing npm from stripping the CLI bin entry during publish.
|
|
31
|
+
- Fix npm bin path and bump to 0.2.2.
|
|
32
|
+
|
|
10
33
|
## [0.2.1] - 2026-06-13
|
|
11
34
|
|
|
12
35
|
### Changed
|
|
13
36
|
- Publish package as `@mfittko/repo-wiki` to resolve npm name-squatting conflict with `repowiki`
|
|
37
|
+
- Publish as @mfittko/repo-wiki.
|
|
38
|
+
- Update build, CI, and release automation to support the change.
|
|
14
39
|
|
|
15
40
|
## [0.2.0] - 2026-06-13
|
|
16
41
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mfittko/repo-wiki",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Node.js CLI and library for compiling any Git repository and its validated documentation into a GitHub Wiki knowledge base.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"bin": {
|
|
8
|
-
"repo-wiki": "
|
|
8
|
+
"repo-wiki": "dist/bin/repo-wiki.js"
|
|
9
9
|
},
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
@@ -68,6 +68,10 @@
|
|
|
68
68
|
"github-actions"
|
|
69
69
|
],
|
|
70
70
|
"license": "MIT",
|
|
71
|
+
"repository": {
|
|
72
|
+
"type": "git",
|
|
73
|
+
"url": "https://github.com/mfittko/repo-wiki"
|
|
74
|
+
},
|
|
71
75
|
"types": "./dist/src/index.d.ts",
|
|
72
76
|
"dependencies": {
|
|
73
77
|
"typescript": "^5.8.3"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function deploy(): string;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"deploy.js","sourceRoot":"","sources":["../../../../../../../test/fixtures/compiler-e2e/basic-node-service/repo/infra/deploy.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,MAAM;IACpB,OAAO,QAAQ,CAAC;AAClB,CAAC"}
|