@savvy-web/silk 3.15.3 → 4.0.1
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/bin/savvy-mcp.js +20 -0
- package/bin/savvy.js +20 -0
- package/changesets-changelog.cjs +768 -698
- package/changesets-changelog.d.cts +184 -112
- package/changesets-changelog.d.ts +184 -112
- package/changesets-changelog.js +769 -702
- package/changesets-markdownlint.cjs +743 -686
- package/changesets-markdownlint.d.cts +7 -9237
- package/changesets-markdownlint.d.ts +7 -9237
- package/changesets-markdownlint.js +755 -698
- package/lint.js +1 -1
- package/package.json +11 -7
package/lint.js
CHANGED
|
@@ -10,7 +10,7 @@ import { ConfigDiscovery, Lint } from "@savvy-web/silk-effects";
|
|
|
10
10
|
* \@savvy-web/lint-staged works unchanged against \@savvy-web/silk/lint.
|
|
11
11
|
*
|
|
12
12
|
* Intentionally omitted (not re-exported):
|
|
13
|
-
* - checkCommand, fmtCommand, initCommand, rootCommand,
|
|
13
|
+
* - checkCommand, fmtCommand, initCommand, rootCommand, main
|
|
14
14
|
* These are \@effect/cli-based CLI commands from cli/index.ts, which was
|
|
15
15
|
* explicitly excluded from the Lint namespace (Phase A decision). They
|
|
16
16
|
* will become the savvy lint command group in the \@savvy-web/cli Phase B
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/silk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The single Silk Suite dev-tooling package — changeset, commitlint, lint, and biome conventions",
|
|
6
6
|
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/silk",
|
|
@@ -73,15 +73,19 @@
|
|
|
73
73
|
"./tsconfig/rspress/website.json": "./tsconfig/rspress/website.json",
|
|
74
74
|
"./package.json": "./package.json"
|
|
75
75
|
},
|
|
76
|
+
"bin": {
|
|
77
|
+
"savvy": "bin/savvy.js",
|
|
78
|
+
"savvy-mcp": "bin/savvy-mcp.js"
|
|
79
|
+
},
|
|
76
80
|
"dependencies": {
|
|
77
81
|
"@effected/commands": "^0.7.0",
|
|
78
|
-
"@effected/git": "^0.15.
|
|
82
|
+
"@effected/git": "^0.15.1",
|
|
79
83
|
"@effected/templates": "^0.6.0",
|
|
80
|
-
"@effected/workspaces": "^0.21.
|
|
81
|
-
"@savvy-web/changelog": "0.1.
|
|
82
|
-
"@savvy-web/cli": "
|
|
83
|
-
"@savvy-web/mcp": "
|
|
84
|
-
"@savvy-web/silk-effects": "
|
|
84
|
+
"@effected/workspaces": "^0.21.1",
|
|
85
|
+
"@savvy-web/changelog": "0.1.2",
|
|
86
|
+
"@savvy-web/cli": "3.0.1",
|
|
87
|
+
"@savvy-web/mcp": "3.0.1",
|
|
88
|
+
"@savvy-web/silk-effects": "8.0.1",
|
|
85
89
|
"effect": "4.0.0-rc.115",
|
|
86
90
|
"semver": "^7.8.5"
|
|
87
91
|
},
|