pmcf 1.79.6 → 1.79.8
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 +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "1.79.
|
|
3
|
+
"version": "1.79.8",
|
|
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.
|
|
41
|
+
"npm-pkgbuild": "^17.4.0",
|
|
42
42
|
"pacc": "^3.3.0",
|
|
43
43
|
"pkg-dir": "^8.0.0"
|
|
44
44
|
},
|
package/src/dns.mjs
CHANGED
|
@@ -168,7 +168,11 @@ export class DNSService extends Base {
|
|
|
168
168
|
};
|
|
169
169
|
|
|
170
170
|
result.sources = [
|
|
171
|
-
new FileContentProvider(p2 + "/",{
|
|
171
|
+
new FileContentProvider(p2 + "/", {
|
|
172
|
+
mode: 0o644,
|
|
173
|
+
user: "named",
|
|
174
|
+
group: "named"
|
|
175
|
+
})[Symbol.asyncIterator]()
|
|
172
176
|
];
|
|
173
177
|
|
|
174
178
|
await generateZoneDefs(this, p2);
|