pmcf 1.59.2 → 1.59.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/bin/pmcf-package +2 -0
- package/package.json +1 -1
- package/src/dns.mjs +1 -1
package/bin/pmcf-package
CHANGED
|
@@ -17,6 +17,7 @@ const pkgDir = await packageDirectory({ cwd: options.root });
|
|
|
17
17
|
const pkg = JSON.parse(await readFile(join(pkgDir, "package.json"), "utf8"));
|
|
18
18
|
const publishingDetails = createPublishingDetails(options.publish, process.env);
|
|
19
19
|
|
|
20
|
+
console.log(publishingDetails);
|
|
20
21
|
for (const name of args) {
|
|
21
22
|
const object = await root.load(name);
|
|
22
23
|
const stagingDir = join(options.output, object.fullName);
|
|
@@ -31,6 +32,7 @@ for (const name of args) {
|
|
|
31
32
|
c => c.name + (c.email ? ` <${c.email}>` : "")
|
|
32
33
|
);
|
|
33
34
|
|
|
35
|
+
console.log(properties.name);
|
|
34
36
|
if (properties.verbose) {
|
|
35
37
|
console.log(properties);
|
|
36
38
|
}
|
package/package.json
CHANGED
package/src/dns.mjs
CHANGED
|
@@ -157,7 +157,7 @@ async function generateNamedDefs(dns, targetDir) {
|
|
|
157
157
|
);
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
console.log(dns.owner.fullName, domain, nameService.domainName, rname);
|
|
160
|
+
//console.log(dns.owner.fullName, domain, nameService.domainName, rname);
|
|
161
161
|
const reverseZones = new Map();
|
|
162
162
|
|
|
163
163
|
const SOARecord = createRecord(
|