@savvy-web/silk 4.0.6 → 4.2.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 +2 -10
- package/biome/silk.json +1 -1
- package/changesets-markdownlint.js +7 -56495
- package/package.json +6 -38
- package/changesets-changelog.cjs +0 -55940
- package/changesets-changelog.d.cts +0 -9307
- package/changesets-changelog.d.ts +0 -9308
- package/changesets-changelog.js +0 -56514
- package/changesets-markdownlint.cjs +0 -55963
- package/changesets-markdownlint.d.cts +0 -11
- package/changesets-remark.d.ts +0 -18
- package/changesets-remark.js +0 -29
- package/changesets.d.ts +0 -10
- package/changesets.js +0 -20
- package/commitlint-formatter.d.ts +0 -14
- package/commitlint-formatter.js +0 -21
- package/commitlint-prompt.d.ts +0 -23
- package/commitlint-prompt.js +0 -25
- package/commitlint-static.d.ts +0 -22
- package/commitlint-static.js +0 -22
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Markdownlint (`.markdownlint-cli2.jsonc`) loads the changeset rule module:
|
|
|
44
44
|
}
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
Changesets (`.changeset/config.json`) loads the changelog generator, the standalone [`@savvy-web/changelog`](https://www.npmjs.com/package/@savvy-web/changelog) package that silk ships as
|
|
47
|
+
Changesets (`.changeset/config.json`) loads the changelog generator, the standalone [`@savvy-web/changelog`](https://www.npmjs.com/package/@savvy-web/changelog) package that silk ships as an exact-pinned dependency:
|
|
48
48
|
|
|
49
49
|
```json
|
|
50
50
|
{
|
|
@@ -52,8 +52,6 @@ Changesets (`.changeset/config.json`) loads the changelog generator, the standal
|
|
|
52
52
|
}
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
The `@savvy-web/silk/changesets/changelog` subpath re-exports the same generator and remains accepted by `savvy check`.
|
|
56
|
-
|
|
57
55
|
Biome (`biome.jsonc`) extends the bundled preset:
|
|
58
56
|
|
|
59
57
|
```jsonc
|
|
@@ -66,18 +64,12 @@ Biome (`biome.jsonc`) extends the bundled preset:
|
|
|
66
64
|
|
|
67
65
|
| Subpath | What it provides |
|
|
68
66
|
| ------- | ---------------- |
|
|
69
|
-
| `./changesets` | Changeset class and service surface |
|
|
70
|
-
| `./changesets/changelog` | `ChangelogFunctions` default (same generator as `@savvy-web/changelog`) |
|
|
71
67
|
| `./changesets/markdownlint` | markdownlint-cli2 rules (default array plus named rules) |
|
|
72
|
-
| `./changesets/remark` | remark transform plugins, presets and lint rules |
|
|
73
68
|
| `./commitlint` | Auto-detecting `CommitlintConfig` plus types |
|
|
74
|
-
| `./commitlint/static` | Static config default with no auto-detection |
|
|
75
|
-
| `./commitlint/prompt` | commitizen adapter |
|
|
76
|
-
| `./commitlint/formatter` | Custom commitlint error formatter |
|
|
77
69
|
| `./lint` | lint-staged handlers, `Preset`, `createConfig` and workspace utils |
|
|
78
70
|
| `./biome` | Static Biome preset asset |
|
|
79
71
|
|
|
80
|
-
|
|
72
|
+
Every subpath ships as ESM only. The Changesets CLI (v3), markdownlint-cli2 and commitlint all load their config modules with `import()`, so no CommonJS build is needed.
|
|
81
73
|
|
|
82
74
|
## License
|
|
83
75
|
|
package/biome/silk.json
CHANGED