pmcf 1.54.2 → 1.54.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 +2 -2
- package/src/dns.mjs +1 -1
- package/src/host.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "1.54.
|
|
3
|
+
"version": "1.54.4",
|
|
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.0.
|
|
41
|
+
"npm-pkgbuild": "^17.0.1",
|
|
42
42
|
"pacc": "^3.3.0",
|
|
43
43
|
"pkg-dir": "^8.0.0"
|
|
44
44
|
},
|
package/src/dns.mjs
CHANGED
|
@@ -108,7 +108,7 @@ export class DNSService extends Base {
|
|
|
108
108
|
|
|
109
109
|
await generateNamedDefs(this, stagingDir);
|
|
110
110
|
|
|
111
|
-
properties.
|
|
111
|
+
properties.dependencies = ["mf-named"];
|
|
112
112
|
properties.replaces = ["mf-named-zones"];
|
|
113
113
|
|
|
114
114
|
return { properties };
|
package/src/host.mjs
CHANGED
|
@@ -335,8 +335,8 @@ export class Host extends Base {
|
|
|
335
335
|
join(stagingDir, "root", ".ssh")
|
|
336
336
|
);
|
|
337
337
|
|
|
338
|
+
properties.dependencies = [this.location.packageName, ...this.depends];
|
|
338
339
|
properties.provides = [...this.provides];
|
|
339
|
-
properties.depends = [this.location.packageName, ...this.depends];
|
|
340
340
|
properties.replaces = [`mf-${this.hostName}`, ...this.replaces];
|
|
341
341
|
properties.backup = "root/.ssh/known_hosts";
|
|
342
342
|
|