@pnpm/building.policy 1100.0.14 → 1100.0.16
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 +20 -0
- package/lib/index.d.ts +12 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @pnpm/building.policy
|
|
2
2
|
|
|
3
|
+
## 1100.0.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- @pnpm/config.version-policy@1100.1.10
|
|
9
|
+
- @pnpm/deps.path@1100.0.12
|
|
10
|
+
- @pnpm/types@1101.7.0
|
|
11
|
+
|
|
12
|
+
## 1100.0.15
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Republished every package: the tarballs published by the v11.13.1 through v11.16.0 releases were missing most of their compiled files due to a packing bug [#13164](https://github.com/pnpm/pnpm/issues/13164).
|
|
17
|
+
|
|
18
|
+
- Updated dependencies:
|
|
19
|
+
- @pnpm/config.version-policy@1100.1.9
|
|
20
|
+
- @pnpm/deps.path@1100.0.11
|
|
21
|
+
- @pnpm/types@1101.6.0
|
|
22
|
+
|
|
3
23
|
## 1100.0.14
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/building.policy",
|
|
3
|
-
"version": "1100.0.
|
|
3
|
+
"version": "1100.0.16",
|
|
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.
|
|
31
|
-
"@pnpm/deps.path": "1100.0.
|
|
32
|
-
"@pnpm/types": "1101.
|
|
30
|
+
"@pnpm/config.version-policy": "1100.1.10",
|
|
31
|
+
"@pnpm/deps.path": "1100.0.12",
|
|
32
|
+
"@pnpm/types": "1101.7.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@jest/globals": "30.4.1",
|
|
36
|
-
"@pnpm/building.policy": "1100.0.
|
|
36
|
+
"@pnpm/building.policy": "1100.0.16"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=22.13"
|