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 +1 -1
- package/src/cluster.mjs +0 -1
- package/src/host.mjs +0 -2
- package/src/location.mjs +0 -1
- package/src/service.mjs +0 -1
- package/types/host.d.mts +0 -2
- package/types/location.d.mts +0 -1
- package/types/service.d.mts +0 -1
package/package.json
CHANGED
package/src/cluster.mjs
CHANGED
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
package/src/service.mjs
CHANGED
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: {
|
package/types/location.d.mts
CHANGED
|
@@ -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: {
|
package/types/service.d.mts
CHANGED
|
@@ -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: {
|