@savvy-web/pnpm-plugin-silk 0.16.0 → 0.17.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.
@@ -105,6 +105,7 @@ const silkCatalogs = {
105
105
  },
106
106
  silkOverrides: {
107
107
  "@isaacs/brace-expansion": "^5.0.1",
108
+ "@types/node": "^26.0.0",
108
109
  lodash: "^4.17.23",
109
110
  "markdown-it": "^14.1.1",
110
111
  minimatch: ">=10.2.3",
@@ -155,13 +156,14 @@ const silkCatalogs = {
155
156
  "@savvy-web/*",
156
157
  "@spencerbeggs/*",
157
158
  "@typescript/native-preview*",
158
- "@vitest/agent/*",
159
+ "@vitest-agent/*",
159
160
  "api-extractor-llms",
160
161
  "config-file-effect",
161
162
  "json-schema-effect",
162
163
  "jsonc-effect",
163
164
  "package-json-effect",
164
165
  "reposets",
166
+ "rolldown-pnpm-config",
165
167
  "rspress-plugin-api-extractor",
166
168
  "runtime-resolver",
167
169
  "semver-effect",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/pnpm-plugin-silk",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "private": false,
5
5
  "description": "pnpm config dependency for centralized catalog management across the Silk ecosystem.",
6
6
  "keywords": [
package/pnpmfile.cjs CHANGED
@@ -1395,7 +1395,7 @@ const _empty$6 = /*#__PURE__*/ makeContext(/*#__PURE__*/ new Map());
1395
1395
  /** @internal */
1396
1396
  const empty$19 = () => _empty$6;
1397
1397
  /** @internal */
1398
- const make$24 = (tag, service) => makeContext(new Map([[tag.key, service]]));
1398
+ const make$24 = (tag, service) => makeContext(/* @__PURE__ */ new Map([[tag.key, service]]));
1399
1399
  /** @internal */
1400
1400
  const add$3 = /*#__PURE__*/ dual(3, (self, tag, service) => {
1401
1401
  const map = new Map(self.unsafeMap);
@@ -8556,7 +8556,7 @@ const get$2 = /*#__PURE__*/ dual(2, (self, fiberRef) => {
8556
8556
  const getOrDefault$1 = /*#__PURE__*/ dual(2, (self, fiberRef) => pipe(get$2(self, fiberRef), getOrElse(() => fiberRef.initial)));
8557
8557
  /** @internal */
8558
8558
  const updateAs = /*#__PURE__*/ dual(2, (self, { fiberId, fiberRef, value }) => {
8559
- if (self.locals.size === 0) return new FiberRefsImpl(new Map([[fiberRef, [[fiberId, value]]]]));
8559
+ if (self.locals.size === 0) return new FiberRefsImpl(/* @__PURE__ */ new Map([[fiberRef, [[fiberId, value]]]]));
8560
8560
  const locals = new Map(self.locals);
8561
8561
  unsafeUpdateAs(locals, fiberId, fiberRef, value);
8562
8562
  return new FiberRefsImpl(locals);
@@ -13483,6 +13483,7 @@ const silkCatalogs = {
13483
13483
  },
13484
13484
  silkOverrides: {
13485
13485
  "@isaacs/brace-expansion": "^5.0.1",
13486
+ "@types/node": "^26.0.0",
13486
13487
  lodash: "^4.17.23",
13487
13488
  "markdown-it": "^14.1.1",
13488
13489
  minimatch: ">=10.2.3",
@@ -13533,13 +13534,14 @@ const silkCatalogs = {
13533
13534
  "@savvy-web/*",
13534
13535
  "@spencerbeggs/*",
13535
13536
  "@typescript/native-preview*",
13536
- "@vitest/agent/*",
13537
+ "@vitest-agent/*",
13537
13538
  "api-extractor-llms",
13538
13539
  "config-file-effect",
13539
13540
  "json-schema-effect",
13540
13541
  "jsonc-effect",
13541
13542
  "package-json-effect",
13542
13543
  "reposets",
13544
+ "rolldown-pnpm-config",
13543
13545
  "rspress-plugin-api-extractor",
13544
13546
  "runtime-resolver",
13545
13547
  "semver-effect",
@@ -13608,7 +13610,7 @@ function mergeStringArrays(silkArray, localArray) {
13608
13610
  * @returns A new record with each key's arrays unioned and sorted
13609
13611
  */
13610
13612
  function mergeArrayRecord(silk, child) {
13611
- const keys = new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13613
+ const keys = /* @__PURE__ */ new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13612
13614
  const result = {};
13613
13615
  for (const key of [...keys].sort((a, b) => a.localeCompare(b))) {
13614
13616
  const childArray = child?.[key];
@@ -13890,8 +13892,8 @@ function warnSecurity(warnings) {
13890
13892
  * consuming repo's root package name.
13891
13893
  */
13892
13894
  const WORKSPACE_LOCAL_HOISTS_BY_REPO = {
13893
- "savvy-web-systems": new Set(["@savvy-web/cli", "@savvy-web/mcp"]),
13894
- "vitest-agent": new Set(["@vitest-agent/cli", "@vitest-agent/mcp"])
13895
+ "savvy-web-systems": /* @__PURE__ */ new Set(["@savvy-web/cli", "@savvy-web/mcp"]),
13896
+ "vitest-agent": /* @__PURE__ */ new Set(["@vitest-agent/cli", "@vitest-agent/mcp"])
13895
13897
  };
13896
13898
  /**
13897
13899
  * Resolves the consuming workspace's root package name.
package/pnpmfile.mjs CHANGED
@@ -1394,7 +1394,7 @@ const _empty$6 = /*#__PURE__*/ makeContext(/*#__PURE__*/ new Map());
1394
1394
  /** @internal */
1395
1395
  const empty$19 = () => _empty$6;
1396
1396
  /** @internal */
1397
- const make$24 = (tag, service) => makeContext(new Map([[tag.key, service]]));
1397
+ const make$24 = (tag, service) => makeContext(/* @__PURE__ */ new Map([[tag.key, service]]));
1398
1398
  /** @internal */
1399
1399
  const add$3 = /*#__PURE__*/ dual(3, (self, tag, service) => {
1400
1400
  const map = new Map(self.unsafeMap);
@@ -8555,7 +8555,7 @@ const get$2 = /*#__PURE__*/ dual(2, (self, fiberRef) => {
8555
8555
  const getOrDefault$1 = /*#__PURE__*/ dual(2, (self, fiberRef) => pipe(get$2(self, fiberRef), getOrElse(() => fiberRef.initial)));
8556
8556
  /** @internal */
8557
8557
  const updateAs = /*#__PURE__*/ dual(2, (self, { fiberId, fiberRef, value }) => {
8558
- if (self.locals.size === 0) return new FiberRefsImpl(new Map([[fiberRef, [[fiberId, value]]]]));
8558
+ if (self.locals.size === 0) return new FiberRefsImpl(/* @__PURE__ */ new Map([[fiberRef, [[fiberId, value]]]]));
8559
8559
  const locals = new Map(self.locals);
8560
8560
  unsafeUpdateAs(locals, fiberId, fiberRef, value);
8561
8561
  return new FiberRefsImpl(locals);
@@ -13482,6 +13482,7 @@ const silkCatalogs = {
13482
13482
  },
13483
13483
  silkOverrides: {
13484
13484
  "@isaacs/brace-expansion": "^5.0.1",
13485
+ "@types/node": "^26.0.0",
13485
13486
  lodash: "^4.17.23",
13486
13487
  "markdown-it": "^14.1.1",
13487
13488
  minimatch: ">=10.2.3",
@@ -13532,13 +13533,14 @@ const silkCatalogs = {
13532
13533
  "@savvy-web/*",
13533
13534
  "@spencerbeggs/*",
13534
13535
  "@typescript/native-preview*",
13535
- "@vitest/agent/*",
13536
+ "@vitest-agent/*",
13536
13537
  "api-extractor-llms",
13537
13538
  "config-file-effect",
13538
13539
  "json-schema-effect",
13539
13540
  "jsonc-effect",
13540
13541
  "package-json-effect",
13541
13542
  "reposets",
13543
+ "rolldown-pnpm-config",
13542
13544
  "rspress-plugin-api-extractor",
13543
13545
  "runtime-resolver",
13544
13546
  "semver-effect",
@@ -13607,7 +13609,7 @@ function mergeStringArrays(silkArray, localArray) {
13607
13609
  * @returns A new record with each key's arrays unioned and sorted
13608
13610
  */
13609
13611
  function mergeArrayRecord(silk, child) {
13610
- const keys = new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13612
+ const keys = /* @__PURE__ */ new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13611
13613
  const result = {};
13612
13614
  for (const key of [...keys].sort((a, b) => a.localeCompare(b))) {
13613
13615
  const childArray = child?.[key];
@@ -13889,8 +13891,8 @@ function warnSecurity(warnings) {
13889
13891
  * consuming repo's root package name.
13890
13892
  */
13891
13893
  const WORKSPACE_LOCAL_HOISTS_BY_REPO = {
13892
- "savvy-web-systems": new Set(["@savvy-web/cli", "@savvy-web/mcp"]),
13893
- "vitest-agent": new Set(["@vitest-agent/cli", "@vitest-agent/mcp"])
13894
+ "savvy-web-systems": /* @__PURE__ */ new Set(["@savvy-web/cli", "@savvy-web/mcp"]),
13895
+ "vitest-agent": /* @__PURE__ */ new Set(["@vitest-agent/cli", "@vitest-agent/mcp"])
13894
13896
  };
13895
13897
  /**
13896
13898
  * Resolves the consuming workspace's root package name.
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.58.9"
9
- }
10
- ]
11
- }