@savvy-web/silk-effects 3.0.0 → 3.0.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/silk-effects",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "private": false,
5
5
  "description": "Shared Effect library for Silk Suite conventions",
6
6
  "homepage": "https://github.com/savvy-web/systems/tree/main/packages/silk-effects",
@@ -36,7 +36,7 @@
36
36
  "jsonc-effect": "^0.3.0",
37
37
  "mdast-util-heading-range": "^4.0.0",
38
38
  "mdast-util-to-string": "^4.0.0",
39
- "prettier": "^3.8.4",
39
+ "prettier": "^3.9.4",
40
40
  "remark-gfm": "^4.0.1",
41
41
  "remark-parse": "^11.0.0",
42
42
  "remark-stringify": "^11.0.0",
@@ -47,9 +47,9 @@
47
47
  "unified": "^11.0.5",
48
48
  "unified-lint-rule": "^3.0.1",
49
49
  "unist-util-visit": "^5.1.0",
50
- "workspaces-effect": "^2.0.1",
50
+ "workspaces-effect": "^2.0.2",
51
51
  "yaml": "^2.9.0",
52
- "yaml-effect": "^0.7.0",
52
+ "yaml-effect": "^0.7.2",
53
53
  "yaml-lint": "^1.7.0"
54
54
  },
55
55
  "peerDependencies": {
@@ -7,12 +7,18 @@ import { FileSystem } from "@effect/platform";
7
7
  /**
8
8
  * Substrings that identify a Silk changelog adapter entry in `.changeset/config.json`.
9
9
  *
10
- * Both the standalone package (`@savvy-web/changesets/changelog`) and the
11
- * consolidated Silk re-export (`@savvy-web/silk/changesets/changelog`) are Silk
12
- * adapters. The `/silk/` segment in the consolidated path breaks the original
10
+ * `@savvy-web/changelog` is the canonical standalone changelog id that `savvy init`
11
+ * now writes. The two legacy forms — the original standalone package
12
+ * (`@savvy-web/changesets/changelog`) and the consolidated Silk re-export
13
+ * (`@savvy-web/silk/changesets/changelog`) — remain accepted for configs written
14
+ * before the rename. The `/silk/` segment in the consolidated path breaks the
13
15
  * `@savvy-web/changesets` substring, so each form needs its own marker.
14
16
  */
15
- const SILK_CHANGELOG_MARKERS = ["@savvy-web/changesets", "@savvy-web/silk/changesets"];
17
+ const SILK_CHANGELOG_MARKERS = [
18
+ "@savvy-web/changelog",
19
+ "@savvy-web/changesets",
20
+ "@savvy-web/silk/changesets"
21
+ ];
16
22
  function matchesSilkMarker(value) {
17
23
  return SILK_CHANGELOG_MARKERS.some((marker) => value.includes(marker));
18
24
  }