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
|
@@ -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/(
|
|
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
|
);
|
|
@@ -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";
|