pmcf 4.15.6 → 4.15.7

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.15.6",
3
+ "version": "4.15.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/cluster.mjs CHANGED
@@ -81,7 +81,6 @@ export class Cluster extends Host {
81
81
  new Set()
82
82
  )) {
83
83
  const host = ni.host;
84
-
85
84
  const packageStagingDir = join(stagingDir, host.name);
86
85
  const result = {
87
86
  sources: [
package/src/host.mjs CHANGED
@@ -426,7 +426,6 @@ export class Host extends ServiceOwner {
426
426
  async *preparePackages(dir) {
427
427
  const pkgName = `${this.typeName}-${this.owner.name}-${this.name}`;
428
428
  let packageData = {
429
- dir,
430
429
  sources: [
431
430
  ...this.templateContent(),
432
431
  new FileContentProvider(
@@ -490,7 +489,6 @@ export class Host extends ServiceOwner {
490
489
 
491
490
  if (this.extra) {
492
491
  yield {
493
- dir,
494
492
  sources: [
495
493
  new FileContentProvider({
496
494
  dir: join(this.directory, "extra"),
package/src/location.mjs CHANGED
@@ -40,7 +40,6 @@ export class Location extends Owner {
40
40
 
41
41
  async *preparePackages(dir) {
42
42
  const packageData = {
43
- dir,
44
43
  sources: [
45
44
  new FileContentProvider(dir + "/"),
46
45
  new FileContentProvider(
package/src/service.mjs CHANGED
@@ -258,7 +258,6 @@ export class Service extends Base {
258
258
 
259
259
  async *preparePackages(dir) {
260
260
  yield {
261
- dir,
262
261
  sources: this.templateContent(),
263
262
  outputs: this.outputs,
264
263
  properties: {
package/types/host.d.mts CHANGED
@@ -253,7 +253,6 @@ export class Host extends ServiceOwner {
253
253
  get subnets(): Set<any>;
254
254
  publicKey(type?: string): Promise<string>;
255
255
  preparePackages(dir: any): AsyncGenerator<{
256
- dir: any;
257
256
  sources: any[];
258
257
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
259
258
  properties: {
@@ -267,7 +266,6 @@ export class Host extends ServiceOwner {
267
266
  backup: string;
268
267
  };
269
268
  } | {
270
- dir: any;
271
269
  sources: FileContentProvider[];
272
270
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
273
271
  properties: {
@@ -350,7 +350,6 @@ export class Location extends Owner {
350
350
  };
351
351
  get location(): this;
352
352
  preparePackages(dir: any): AsyncGenerator<{
353
- dir: any;
354
353
  sources: FileContentProvider[];
355
354
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
356
355
  properties: {
@@ -636,7 +636,6 @@ export class Service extends Base {
636
636
  get types(): Set<any>;
637
637
  get systemdService(): any;
638
638
  preparePackages(dir: any): AsyncGenerator<{
639
- dir: any;
640
639
  sources: any[];
641
640
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
642
641
  properties: {