@savvy-web/pnpm-plugin-silk 0.16.1 → 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,7 +105,7 @@ const silkCatalogs = {
105
105
  },
106
106
  silkOverrides: {
107
107
  "@isaacs/brace-expansion": "^5.0.1",
108
- "@types/node": "catalog:silk",
108
+ "@types/node": "^26.0.0",
109
109
  lodash: "^4.17.23",
110
110
  "markdown-it": "^14.1.1",
111
111
  minimatch: ">=10.2.3",
@@ -156,13 +156,14 @@ const silkCatalogs = {
156
156
  "@savvy-web/*",
157
157
  "@spencerbeggs/*",
158
158
  "@typescript/native-preview*",
159
- "@vitest/agent/*",
159
+ "@vitest-agent/*",
160
160
  "api-extractor-llms",
161
161
  "config-file-effect",
162
162
  "json-schema-effect",
163
163
  "jsonc-effect",
164
164
  "package-json-effect",
165
165
  "reposets",
166
+ "rolldown-pnpm-config",
166
167
  "rspress-plugin-api-extractor",
167
168
  "runtime-resolver",
168
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.1",
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,7 +13483,7 @@ const silkCatalogs = {
13483
13483
  },
13484
13484
  silkOverrides: {
13485
13485
  "@isaacs/brace-expansion": "^5.0.1",
13486
- "@types/node": "catalog:silk",
13486
+ "@types/node": "^26.0.0",
13487
13487
  lodash: "^4.17.23",
13488
13488
  "markdown-it": "^14.1.1",
13489
13489
  minimatch: ">=10.2.3",
@@ -13534,13 +13534,14 @@ const silkCatalogs = {
13534
13534
  "@savvy-web/*",
13535
13535
  "@spencerbeggs/*",
13536
13536
  "@typescript/native-preview*",
13537
- "@vitest/agent/*",
13537
+ "@vitest-agent/*",
13538
13538
  "api-extractor-llms",
13539
13539
  "config-file-effect",
13540
13540
  "json-schema-effect",
13541
13541
  "jsonc-effect",
13542
13542
  "package-json-effect",
13543
13543
  "reposets",
13544
+ "rolldown-pnpm-config",
13544
13545
  "rspress-plugin-api-extractor",
13545
13546
  "runtime-resolver",
13546
13547
  "semver-effect",
@@ -13609,7 +13610,7 @@ function mergeStringArrays(silkArray, localArray) {
13609
13610
  * @returns A new record with each key's arrays unioned and sorted
13610
13611
  */
13611
13612
  function mergeArrayRecord(silk, child) {
13612
- const keys = new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13613
+ const keys = /* @__PURE__ */ new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13613
13614
  const result = {};
13614
13615
  for (const key of [...keys].sort((a, b) => a.localeCompare(b))) {
13615
13616
  const childArray = child?.[key];
@@ -13891,8 +13892,8 @@ function warnSecurity(warnings) {
13891
13892
  * consuming repo's root package name.
13892
13893
  */
13893
13894
  const WORKSPACE_LOCAL_HOISTS_BY_REPO = {
13894
- "savvy-web-systems": new Set(["@savvy-web/cli", "@savvy-web/mcp"]),
13895
- "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"])
13896
13897
  };
13897
13898
  /**
13898
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,7 +13482,7 @@ const silkCatalogs = {
13482
13482
  },
13483
13483
  silkOverrides: {
13484
13484
  "@isaacs/brace-expansion": "^5.0.1",
13485
- "@types/node": "catalog:silk",
13485
+ "@types/node": "^26.0.0",
13486
13486
  lodash: "^4.17.23",
13487
13487
  "markdown-it": "^14.1.1",
13488
13488
  minimatch: ">=10.2.3",
@@ -13533,13 +13533,14 @@ const silkCatalogs = {
13533
13533
  "@savvy-web/*",
13534
13534
  "@spencerbeggs/*",
13535
13535
  "@typescript/native-preview*",
13536
- "@vitest/agent/*",
13536
+ "@vitest-agent/*",
13537
13537
  "api-extractor-llms",
13538
13538
  "config-file-effect",
13539
13539
  "json-schema-effect",
13540
13540
  "jsonc-effect",
13541
13541
  "package-json-effect",
13542
13542
  "reposets",
13543
+ "rolldown-pnpm-config",
13543
13544
  "rspress-plugin-api-extractor",
13544
13545
  "runtime-resolver",
13545
13546
  "semver-effect",
@@ -13608,7 +13609,7 @@ function mergeStringArrays(silkArray, localArray) {
13608
13609
  * @returns A new record with each key's arrays unioned and sorted
13609
13610
  */
13610
13611
  function mergeArrayRecord(silk, child) {
13611
- const keys = new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13612
+ const keys = /* @__PURE__ */ new Set([...Object.keys(silk), ...Object.keys(child ?? {})]);
13612
13613
  const result = {};
13613
13614
  for (const key of [...keys].sort((a, b) => a.localeCompare(b))) {
13614
13615
  const childArray = child?.[key];
@@ -13890,8 +13891,8 @@ function warnSecurity(warnings) {
13890
13891
  * consuming repo's root package name.
13891
13892
  */
13892
13893
  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"])
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"])
13895
13896
  };
13896
13897
  /**
13897
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
- }