@savvy-web/silk 3.15.2 → 4.0.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/bin/savvy-mcp.js +20 -0
- package/bin/savvy.js +20 -0
- package/changesets-changelog.cjs +838 -731
- package/changesets-changelog.d.cts +185 -113
- package/changesets-changelog.d.ts +185 -113
- package/changesets-changelog.js +840 -736
- package/changesets-markdownlint.cjs +813 -719
- package/changesets-markdownlint.d.cts +7 -9237
- package/changesets-markdownlint.d.ts +7 -9237
- package/changesets-markdownlint.js +826 -732
- package/lint.js +1 -1
- package/package.json +18 -14
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.0",
|
|
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,36 +73,40 @@
|
|
|
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
|
-
"@effected/commands": "^0.
|
|
78
|
-
"@effected/git": "^0.
|
|
79
|
-
"@effected/templates": "^0.
|
|
80
|
-
"@effected/workspaces": "^0.
|
|
81
|
-
"@savvy-web/changelog": "0.1.
|
|
82
|
-
"@savvy-web/cli": "
|
|
83
|
-
"@savvy-web/mcp": "
|
|
84
|
-
"@savvy-web/silk-effects": "
|
|
85
|
-
"effect": "4.0.0-rc.
|
|
81
|
+
"@effected/commands": "^0.7.0",
|
|
82
|
+
"@effected/git": "^0.15.0",
|
|
83
|
+
"@effected/templates": "^0.6.0",
|
|
84
|
+
"@effected/workspaces": "^0.21.0",
|
|
85
|
+
"@savvy-web/changelog": "0.1.2",
|
|
86
|
+
"@savvy-web/cli": "3.0.0",
|
|
87
|
+
"@savvy-web/mcp": "3.0.0",
|
|
88
|
+
"@savvy-web/silk-effects": "8.0.0",
|
|
89
|
+
"effect": "4.0.0-rc.115",
|
|
86
90
|
"semver": "^7.8.5"
|
|
87
91
|
},
|
|
88
92
|
"peerDependencies": {
|
|
89
|
-
"@biomejs/biome": "2.5.
|
|
93
|
+
"@biomejs/biome": "2.5.13",
|
|
90
94
|
"@changesets/cli": "^3.0.2",
|
|
91
95
|
"@commitlint/cli": "^21.2.2",
|
|
92
96
|
"@commitlint/config-conventional": "^21.2.2",
|
|
93
97
|
"@types/bun": "^1.4.2",
|
|
94
|
-
"@types/node": "^26.5.
|
|
98
|
+
"@types/node": "^26.5.1",
|
|
95
99
|
"@vitest/coverage-istanbul": "^5.0.0",
|
|
96
100
|
"@vitest/coverage-v8": "^5.0.0",
|
|
97
101
|
"@vitest/expect": "^5.0.0",
|
|
98
102
|
"husky": "^9.1.7",
|
|
99
|
-
"lint-staged": "^17.5.
|
|
103
|
+
"lint-staged": "^17.5.1",
|
|
100
104
|
"markdownlint-cli2": "^0.23.2",
|
|
101
105
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
102
106
|
"tsx": "^4.23.13",
|
|
103
107
|
"turbo": "^2.10.12",
|
|
104
108
|
"typescript": "^7.0.2",
|
|
105
|
-
"vite": "^8.
|
|
109
|
+
"vite": "^8.3.0",
|
|
106
110
|
"vitest": "^5.0.0"
|
|
107
111
|
},
|
|
108
112
|
"peerDependenciesMeta": {
|