pmcf 4.9.2 → 4.9.4

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": "pmcf",
3
- "version": "4.9.2",
3
+ "version": "4.9.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -55,8 +55,8 @@
55
55
  "dependencies": {
56
56
  "content-entry-transform": "^1.6.0",
57
57
  "ip-utilties": "^2.0.2",
58
- "npm-pkgbuild": "^20.0.1",
59
- "pacc": "^8.0.2",
58
+ "npm-pkgbuild": "^20.1.0",
59
+ "pacc": "^8.0.3",
60
60
  "package-directory": "^8.1.0"
61
61
  },
62
62
  "devDependencies": {
@@ -68,7 +68,7 @@
68
68
  "typescript": "^5.9.3"
69
69
  },
70
70
  "engines": {
71
- "node": ">=24.12.0"
71
+ "node": ">=24.13.0"
72
72
  },
73
73
  "repository": {
74
74
  "type": "git",
package/src/host.mjs CHANGED
@@ -492,7 +492,12 @@ export class Host extends ServiceOwner {
492
492
  if (this.extra) {
493
493
  packageData = {
494
494
  dir,
495
- sources: [new FileContentProvider(join(this.directory, "extra") + "/")],
495
+ sources: [
496
+ new FileContentProvider({
497
+ dir: join(this.directory, "extra"),
498
+ pattern: "**/*"
499
+ })
500
+ ],
496
501
  outputs: this.outputs,
497
502
  properties: {
498
503
  name: `${this.typeName}-extra-${this.owner.name}-${this.name}`,
package/types/base.d.mts CHANGED
@@ -124,7 +124,7 @@ export class Base {
124
124
  set packaging(value: any);
125
125
  get packaging(): any;
126
126
  get derivedPackaging(): any;
127
- get outputs(): Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
127
+ get outputs(): Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
128
128
  preparePackages(stagingDir: any): AsyncGenerator<never, void, unknown>;
129
129
  templateContent(entryProperties: any, directoryProperties: any): any[];
130
130
  set tags(value: Set<any>);
package/types/host.d.mts CHANGED
@@ -255,7 +255,7 @@ export class Host extends ServiceOwner {
255
255
  preparePackages(dir: any): AsyncGenerator<{
256
256
  dir: any;
257
257
  sources: any[];
258
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
258
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
259
259
  properties: {
260
260
  name: string;
261
261
  description: string;
@@ -352,7 +352,7 @@ export class Location extends Owner {
352
352
  preparePackages(dir: any): AsyncGenerator<{
353
353
  dir: any;
354
354
  sources: FileContentProvider[];
355
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
355
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
356
356
  properties: {
357
357
  name: string;
358
358
  description: string;
@@ -1259,7 +1259,7 @@ export class ChronyService extends ExtraSourceService {
1259
1259
  preparePackages(dir: any): AsyncGenerator<{
1260
1260
  dir: any;
1261
1261
  sources: FileContentProvider[];
1262
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
1262
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
1263
1263
  properties: {
1264
1264
  name: string;
1265
1265
  description: string;
@@ -780,7 +780,7 @@ export class InfluxdbService extends Service {
780
780
  preparePackages(dir: any): AsyncGenerator<{
781
781
  dir: any;
782
782
  sources: FileContentProvider[];
783
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
783
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
784
784
  properties: {
785
785
  name: string;
786
786
  description: string;
@@ -909,7 +909,7 @@ export class KeaService extends Service {
909
909
  preparePackages(dir: any): AsyncGenerator<{
910
910
  dir: any;
911
911
  sources: FileContentProvider[];
912
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
912
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
913
913
  properties: {
914
914
  name: string;
915
915
  description: string;
@@ -841,7 +841,7 @@ export class MosquittoService extends Service {
841
841
  preparePackages(dir: any): AsyncGenerator<{
842
842
  dir: any;
843
843
  sources: FileContentProvider[];
844
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
844
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
845
845
  properties: {
846
846
  name: string;
847
847
  description: string;
@@ -873,7 +873,7 @@ export class OpenLDAPService extends Service {
873
873
  preparePackages(dir: any): AsyncGenerator<{
874
874
  dir: any;
875
875
  sources: any[];
876
- outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
876
+ outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
877
877
  properties: {
878
878
  name: string;
879
879
  description: string;