npm-pkgbuild 15.3.12 → 15.3.13

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.12",
3
+ "version": "15.3.13",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -265,6 +265,6 @@ const toBeSkipped = new RegExp(
265
265
  "chains and topics\\.md",
266
266
  "build_detect_platform"
267
267
  ].join("|") +
268
- ")$|(node_modules/(@types|node-addon-api|mf-hosting|node-gyp$)|(win32|android|darwin)-(ia32|x64|arm|arm64))",
268
+ ")$|(node_modules/(npm-pkgbuild|@types|node-addon-api|mf-hosting|node-gyp$)|(win32|android|darwin)-(ia32|x64|arm|arm64))",
269
269
  "i"
270
270
  );
@@ -22,7 +22,8 @@ import { BUILDAH } from "./output/buildah.mjs";
22
22
  export const allInputs = [
23
23
  NPMPackContentProvider,
24
24
  NodeModulesContentProvider,
25
- NFTContentProvider
25
+ NFTContentProvider,
26
+ FileContentProvider
26
27
  ];
27
28
 
28
29
  /**
@@ -27,7 +27,7 @@ export function extractFromPackage(options?: {
27
27
  /**
28
28
  * All content providers
29
29
  */
30
- export const allInputs: (typeof NPMPackContentProvider)[];
30
+ export const allInputs: (typeof NPMPackContentProvider | typeof FileContentProvider)[];
31
31
  /**
32
32
  * All output formats
33
33
  */
@@ -67,6 +67,7 @@ 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";
70
71
  import { RPM } from "./output/rpm.mjs";
71
72
  import { OCI } from "./output/oci.mjs";
72
73
  import { DOCKER } from "./output/docker.mjs";