@savvy-web/pnpm-plugin-silk 0.3.0 → 0.4.0
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/README.md +11 -3
- package/index.cjs +5 -4
- package/package.json +3 -3
- package/pnpmfile.cjs +1664 -147
package/README.md
CHANGED
|
@@ -17,7 +17,9 @@ of truth.
|
|
|
17
17
|
- **Security overrides** - Centralized CVE fixes via `silkOverrides` that
|
|
18
18
|
propagate to all consuming repositories
|
|
19
19
|
- **Build configuration sync** - Shared `onlyBuiltDependencies` and
|
|
20
|
-
`publicHoistPattern` settings
|
|
20
|
+
`publicHoistPattern` settings across repositories
|
|
21
|
+
- **Biome schema sync** - Automatically updates `$schema` URLs in
|
|
22
|
+
`biome.json`/`biome.jsonc` files to match the catalog version
|
|
21
23
|
- **Non-destructive merging** - Local definitions always take precedence with
|
|
22
24
|
clear warnings for divergences
|
|
23
25
|
|
|
@@ -34,7 +36,7 @@ hash:
|
|
|
34
36
|
|
|
35
37
|
```yaml
|
|
36
38
|
configDependencies:
|
|
37
|
-
"@savvy-web/pnpm-plugin-silk": "0.
|
|
39
|
+
"@savvy-web/pnpm-plugin-silk": "0.3.0+sha512-..."
|
|
38
40
|
```
|
|
39
41
|
|
|
40
42
|
## Quick Start
|
|
@@ -58,11 +60,17 @@ while `silkPeers` provides permissive ranges for peer dependencies. Security
|
|
|
58
60
|
overrides, build script allowlists, and hoist patterns are automatically
|
|
59
61
|
merged during `pnpm install`.
|
|
60
62
|
|
|
63
|
+
## Documentation
|
|
64
|
+
|
|
65
|
+
For configuration details, architecture overview, and advanced usage, see
|
|
66
|
+
[docs/](./docs/).
|
|
67
|
+
|
|
61
68
|
## More Information
|
|
62
69
|
|
|
70
|
+
- [Changelog](./CHANGELOG.md) - Release history
|
|
63
71
|
- [Contributing](./CONTRIBUTING.md) - Development setup and guidelines
|
|
64
72
|
- [Security Policy](./SECURITY.md) - Vulnerability reporting
|
|
65
|
-
- [
|
|
73
|
+
- [Code of Conduct](./CODE_OF_CONDUCT.md) - Community guidelines
|
|
66
74
|
|
|
67
75
|
## License
|
|
68
76
|
|
package/index.cjs
CHANGED
|
@@ -27,13 +27,14 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
});
|
|
28
28
|
const silkCatalogs = {
|
|
29
29
|
silk: {
|
|
30
|
+
"@biomejs/biome": "2.3.14",
|
|
30
31
|
"@changesets/cli": "^2.29.8",
|
|
31
32
|
"@commitlint/cli": "^20.4.1",
|
|
32
33
|
"@commitlint/config-conventional": "^20.4.1",
|
|
33
34
|
"@microsoft/api-extractor": "^7.56.2",
|
|
34
|
-
"@rslib/core": "^0.19.
|
|
35
|
-
"@types/node": "^25.2.
|
|
36
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
35
|
+
"@rslib/core": "^0.19.5",
|
|
36
|
+
"@types/node": "^25.2.1",
|
|
37
|
+
"@typescript/native-preview": "^7.0.0-dev.20260206.1",
|
|
37
38
|
"@vitest/coverage-v8": "^4.0.18",
|
|
38
39
|
commitizen: "^4.3.1",
|
|
39
40
|
husky: "^9.1.7",
|
|
@@ -46,7 +47,7 @@ const silkCatalogs = {
|
|
|
46
47
|
vitest: "^4.0.18"
|
|
47
48
|
},
|
|
48
49
|
silkPeers: {
|
|
49
|
-
"@biomejs/biome": "
|
|
50
|
+
"@biomejs/biome": "2.3.14",
|
|
50
51
|
"@commitlint/cli": "^20.4.1",
|
|
51
52
|
"@commitlint/config-conventional": "^20.4.1",
|
|
52
53
|
"@microsoft/api-extractor": "^7.56.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/pnpm-plugin-silk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "pnpm config dependency for centralized catalog management across the Silk ecosystem.",
|
|
6
6
|
"keywords": [
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@types/node": "^25.2.
|
|
37
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
36
|
+
"@types/node": "^25.2.1",
|
|
37
|
+
"@typescript/native-preview": "^7.0.0-dev.20260206.1",
|
|
38
38
|
"typescript": "^5.9.3"
|
|
39
39
|
},
|
|
40
40
|
"peerDependenciesMeta": {
|