@pnpm/config.writer 1000.0.14 → 1100.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/lib/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import type { PnpmSettings, ProjectManifest } from '@pnpm/types';
2
2
  export interface WriteSettingsOptions {
3
3
  updatedSettings?: PnpmSettings;
4
4
  updatedOverrides?: Record<string, string>;
5
+ addedMinimumReleaseAgeExcludes?: string[];
5
6
  rootProjectManifest?: ProjectManifest;
6
7
  rootProjectManifestDir: string;
7
8
  workspaceDir: string;
package/lib/index.js CHANGED
@@ -3,6 +3,7 @@ export async function writeSettings(opts) {
3
3
  await updateWorkspaceManifest(opts.workspaceDir, {
4
4
  updatedFields: opts.updatedSettings,
5
5
  updatedOverrides: opts.updatedOverrides,
6
+ addedMinimumReleaseAgeExcludes: opts.addedMinimumReleaseAgeExcludes,
6
7
  });
7
8
  }
8
9
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/config.writer",
3
- "version": "1000.0.14",
3
+ "version": "1100.0.0",
4
4
  "description": "Functions for updating the configuration settings",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -25,11 +25,11 @@
25
25
  "!*.map"
26
26
  ],
27
27
  "dependencies": {
28
- "@pnpm/types": "1000.9.0",
29
- "@pnpm/workspace.workspace-manifest-writer": "1001.0.3"
28
+ "@pnpm/types": "1100.0.0",
29
+ "@pnpm/workspace.workspace-manifest-writer": "1100.0.0"
30
30
  },
31
31
  "devDependencies": {
32
- "@pnpm/config.writer": "1000.0.14"
32
+ "@pnpm/config.writer": "1100.0.0"
33
33
  },
34
34
  "engines": {
35
35
  "node": ">=22.13"
@@ -39,8 +39,8 @@
39
39
  },
40
40
  "scripts": {
41
41
  "lint": "eslint \"src/**/*.ts\"",
42
- "test": "pnpm run compile",
42
+ "test": "pn compile",
43
43
  "start": "tsgo --watch",
44
- "compile": "tsgo --build && pnpm run lint --fix"
44
+ "compile": "tsgo --build && pn lint --fix"
45
45
  }
46
46
  }