pmcf 1.56.0 → 1.56.2

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 CHANGED
@@ -15,7 +15,6 @@ if (!options.output) {
15
15
 
16
16
  const pkgDir = await packageDirectory({ cwd: options.root });
17
17
  const pkg = JSON.parse(await readFile(join(pkgDir, "package.json"), "utf8"));
18
-
19
18
  const publishingDetails = createPublishingDetails(options.publish, process.env);
20
19
 
21
20
  for (const name of args) {
@@ -26,6 +25,9 @@ for (const name of args) {
26
25
  for (const outputFactory of outputs) {
27
26
  properties.version = pkg.version;
28
27
  properties.license = pkg.license;
28
+ properties.maintainer = pkg.contributors.map(
29
+ c => c.name + (c.email ? ` <${c.email}>` : "")
30
+ );
29
31
 
30
32
  if (properties.verbose) {
31
33
  console.log(properties);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.56.0",
3
+ "version": "1.56.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -18,7 +18,6 @@ import {
18
18
  copySshKeys,
19
19
  generateKnownHosts
20
20
  } from "./host-utils.mjs";
21
- import { OutputFileType } from "typescript";
22
21
 
23
22
  const HostTypeDefinition = {
24
23
  name: "host",