@vivero/stoma-core 0.1.0-rc.3 → 0.1.0-rc.5
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/package.json +7 -21
- package/CHANGELOG.md +0 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vivero/stoma-core",
|
|
3
|
-
"version": "0.1.0-rc.
|
|
3
|
+
"version": "0.1.0-rc.5",
|
|
4
4
|
"description": "Shared utilities for Stoma packages — debug logging, timing helpers, and common type guards.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -44,29 +44,15 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
48
|
-
"main": "./dist/index.js",
|
|
49
|
-
"module": "./dist/index.js",
|
|
50
|
-
"types": "./dist/index.d.ts",
|
|
51
|
-
"exports": {
|
|
52
|
-
".": {
|
|
53
|
-
"types": "./dist/index.d.ts",
|
|
54
|
-
"import": "./dist/index.js",
|
|
55
|
-
"default": "./dist/index.js"
|
|
56
|
-
},
|
|
57
|
-
"./debug": {
|
|
58
|
-
"types": "./dist/debug.d.ts",
|
|
59
|
-
"import": "./dist/debug.js",
|
|
60
|
-
"default": "./dist/debug.js"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"scripts": {
|
|
65
|
-
"build": "tsup",
|
|
66
|
-
"typecheck": "tsc --noEmit"
|
|
47
|
+
"access": "public"
|
|
67
48
|
},
|
|
68
49
|
"devDependencies": {
|
|
50
|
+
"@types/node": "^22.0.0",
|
|
69
51
|
"tsup": "^8.5.1",
|
|
70
52
|
"typescript": "^5.9.3"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsup",
|
|
56
|
+
"typecheck": "tsc --noEmit"
|
|
71
57
|
}
|
|
72
58
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# @vivero/stoma-core
|
|
2
|
-
|
|
3
|
-
## 0.1.0-rc.3
|
|
4
|
-
### Patch Changes
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
- [`c6f0576`](https://github.com/vivero-dev/stoma/commit/c6f05763d6f2ba3e8a3c6845258d57e6f8c1d693) Thanks [@JonathanBennett](https://github.com/JonathanBennett)! - fix: resolve `workspace:*` protocols in published packages
|
|
9
|
-
|
|
10
|
-
Replaces `changeset publish` with a custom publish script (`scripts/publish.mjs`) that uses `yarn pack` to resolve `workspace:*` protocols and apply `publishConfig` overrides, then `npm publish <tarball>` for OIDC trusted publishing with provenance. The prepack/postpack workaround scripts have been removed.
|
|
11
|
-
|
|
12
|
-
## 0.1.0-rc.2
|
|
13
|
-
### Patch Changes
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- [`c6f0576`](https://github.com/vivero-dev/stoma/commit/c6f05763d6f2ba3e8a3c6845258d57e6f8c1d693) Thanks [@JonathanBennett](https://github.com/JonathanBennett)! - fix: publish via `yarn npm publish` to correctly resolve `workspace:*` protocols
|
|
18
|
-
|
|
19
|
-
Replaces `changeset publish` (which used `npm publish <dir>` and never resolved workspace protocols) with a custom publish script that runs `yarn npm publish` from each package directory. Yarn natively handles `workspace:*` resolution and `publishConfig` field overrides, so the prepack/postpack workaround scripts have been removed.
|
|
20
|
-
|
|
21
|
-
## 0.1.0-rc.1
|
|
22
|
-
### Patch Changes
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
- [`a414008`](https://github.com/vivero-dev/stoma/commit/a41400882fbe51f9f5ac7f623dec52f0e2ca1dd6) Thanks [@JonathanBennett](https://github.com/JonathanBennett)! - Fix npm publish pipeline to correctly resolve workspace protocols and apply publishConfig overrides
|
|
27
|
-
|
|
28
|
-
Adds prepack/postpack lifecycle scripts that prepare package.json for `npm publish` by resolving `workspace:*` to real versions and applying `publishConfig` field overrides (main, types, exports, bin). This replaces the previous `@changesets/cli` yarn patch approach and restores compatibility with GitHub Actions OIDC tokens for npm authentication and provenance.
|