@pnpm/building.policy 1100.0.13 → 1100.0.14

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pnpm/building.policy
2
2
 
3
+ ## 1100.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/config.version-policy@1100.1.8
9
+ - @pnpm/deps.path@1100.0.10
10
+ - @pnpm/types@1101.5.0
11
+
3
12
  ## 1100.0.13
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/building.policy",
3
- "version": "1100.0.13",
3
+ "version": "1100.0.14",
4
4
  "description": "Create a function for filtering out dependencies that are not allowed to be built",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -27,13 +27,13 @@
27
27
  "!*.map"
28
28
  ],
29
29
  "dependencies": {
30
- "@pnpm/config.version-policy": "1100.1.7",
31
- "@pnpm/deps.path": "1100.0.9",
32
- "@pnpm/types": "1101.4.0"
30
+ "@pnpm/config.version-policy": "1100.1.8",
31
+ "@pnpm/deps.path": "1100.0.10",
32
+ "@pnpm/types": "1101.5.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@jest/globals": "30.4.1",
36
- "@pnpm/building.policy": "1100.0.13"
36
+ "@pnpm/building.policy": "1100.0.14"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=22.13"
package/lib/index.d.ts DELETED
@@ -1,12 +0,0 @@
1
- import type { AllowBuild, DepPath } from '@pnpm/types';
2
- export declare function isBuildExplicitlyDisallowed(depPath: DepPath, allowBuild?: AllowBuild): boolean;
3
- export declare function createAllowBuildFunction(opts: {
4
- dangerouslyAllowAllBuilds?: boolean;
5
- allowBuilds?: Record<string, boolean | string>;
6
- }): undefined | AllowBuild;
7
- /**
8
- * The `allowBuilds` key under which an ignored build should be approved:
9
- * the package name for registry packages, the peer-suffix-free depPath for
10
- * git/tarball artifacts, whose name alone must not approve builds.
11
- */
12
- export declare function allowBuildKeyFromIgnoredBuild(depPath: DepPath): string;