pmcf 1.56.3 → 1.56.5

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": "1.56.3",
3
+ "version": "1.56.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,7 +38,7 @@
38
38
  "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
39
39
  },
40
40
  "dependencies": {
41
- "npm-pkgbuild": "^17.2.0",
41
+ "npm-pkgbuild": "^17.2.1",
42
42
  "pacc": "^3.3.0",
43
43
  "pkg-dir": "^8.0.0"
44
44
  },
package/src/base.mjs CHANGED
@@ -289,7 +289,7 @@ export class Base {
289
289
  }
290
290
 
291
291
  get outputs() {
292
- return new Set();
292
+ return this.owner ? this.owner.outputs : new Set();
293
293
  }
294
294
 
295
295
  async preparePackage(stagingDir) {
package/src/dns.mjs CHANGED
@@ -103,6 +103,10 @@ export class DNSService extends Base {
103
103
  };
104
104
  }
105
105
 
106
+ get packageName() {
107
+ return `named-${this.owner.name}`;
108
+ }
109
+
106
110
  async preparePackage(stagingDir) {
107
111
  const result = await super.preparePackage(stagingDir);
108
112
 
package/types/base.d.mts CHANGED
@@ -60,9 +60,9 @@ export class Base {
60
60
  get directory(): any;
61
61
  get fullName(): any;
62
62
  get packageName(): string;
63
- get outputs(): Set<any>;
63
+ get outputs(): any;
64
64
  preparePackage(stagingDir: any): Promise<{
65
- outputs: Set<any>;
65
+ outputs: any;
66
66
  properties: {
67
67
  name: string;
68
68
  description: string;
package/types/host.d.mts CHANGED
@@ -189,7 +189,7 @@ export class Host extends Base {
189
189
  get rawAddresses(): any[];
190
190
  get cidrAddresses(): any[];
191
191
  publicKey(type?: string): Promise<string>;
192
- get outputs(): Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
192
+ get outputs(): Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").DOCKER>;
193
193
  #private;
194
194
  }
195
195
  export class NetworkInterface extends Base {
package/types/owner.d.mts CHANGED
@@ -195,6 +195,7 @@ export class Owner extends Base {
195
195
  clusters(): any;
196
196
  addBridge(network: any, destinationNetworks: any): any;
197
197
  _resolveBridges(): void;
198
+ get outputs(): Set<any>;
198
199
  networkAddresses(): Generator<any, void, any>;
199
200
  set country(value: any);
200
201
  get country(): any;