npm-pkgbuild 15.3.33 → 15.3.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "15.3.33",
3
+ "version": "15.3.34",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -59,7 +59,7 @@
59
59
  "content-entry": "^10.0.1",
60
60
  "content-entry-filesystem": "^6.0.0",
61
61
  "content-entry-transform": "^1.4.29",
62
- "execa": "^9.3.1",
62
+ "execa": "^9.4.0",
63
63
  "expression-expander": "^7.2.5",
64
64
  "globby": "^14.0.2",
65
65
  "ini": "^5.0.0",
@@ -82,7 +82,7 @@
82
82
  "typescript": "^5.6.2"
83
83
  },
84
84
  "engines": {
85
- "node": ">=20.15.1",
85
+ "node": ">=20.17.0",
86
86
  "bun": ">=1.1"
87
87
  },
88
88
  "repository": {
@@ -20,6 +20,10 @@ export class FileContentProvider extends ContentProvider {
20
20
  return "files";
21
21
  }
22
22
 
23
+ static get description() {
24
+ return "use plain files source";
25
+ }
26
+
23
27
  constructor(definitions, entryProperties) {
24
28
  super(definitions, entryProperties);
25
29
 
@@ -17,7 +17,7 @@ import { DOCKER } from "./output/docker.mjs";
17
17
  import { BUILDAH } from "./output/buildah.mjs";
18
18
 
19
19
  /**
20
- * All content providers
20
+ * All content providers (input)
21
21
  */
22
22
  export const allInputs = [
23
23
  NPMPackContentProvider,
@@ -5,6 +5,7 @@
5
5
  * @param {string} definitions.base base directory where to find the files
6
6
  */
7
7
  export class FileContentProvider extends ContentProvider {
8
+ static get description(): string;
8
9
  definitions: any;
9
10
  [Symbol.asyncIterator](): AsyncGenerator<any, void, unknown>;
10
11
  }
@@ -25,9 +25,9 @@ export function extractFromPackage(options?: {
25
25
  verbose?: boolean;
26
26
  }, env?: any): AsyncIterable<PackageDefinition>;
27
27
  /**
28
- * All content providers
28
+ * All content providers (input)
29
29
  */
30
- export const allInputs: (typeof NPMPackContentProvider | typeof FileContentProvider)[];
30
+ export const allInputs: (typeof NPMPackContentProvider)[];
31
31
  /**
32
32
  * All output formats
33
33
  */
@@ -67,7 +67,6 @@ export type PackageDefinition = {
67
67
  };
68
68
  };
69
69
  import { NPMPackContentProvider } from "./content/npm-pack-content-provider.mjs";
70
- import { FileContentProvider } from "./content/file-content-provider.mjs";
71
70
  import { RPM } from "./output/rpm.mjs";
72
71
  import { OCI } from "./output/oci.mjs";
73
72
  import { DOCKER } from "./output/docker.mjs";