pmcf 1.59.6 → 1.59.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.
Files changed (2) hide show
  1. package/bin/pmcf-package +4 -6
  2. package/package.json +1 -1
package/bin/pmcf-package CHANGED
@@ -17,7 +17,10 @@ if (!options.output) {
17
17
 
18
18
  const pkgDir = await packageDirectory({ cwd: options.root });
19
19
  const pkg = JSON.parse(await readFile(join(pkgDir, "package.json"), "utf8"));
20
- const publishingDetails = createPublishingDetails(asArray(options.publish), env);
20
+ const publishingDetails = createPublishingDetails(
21
+ asArray(options.publish),
22
+ env
23
+ );
21
24
 
22
25
  for (const name of args) {
23
26
  const object = await root.load(name);
@@ -33,7 +36,6 @@ for (const name of args) {
33
36
  c => c.name + (c.email ? ` <${c.email}>` : "")
34
37
  );
35
38
 
36
- console.log(properties.name);
37
39
  if (properties.verbose) {
38
40
  console.log(properties);
39
41
  }
@@ -51,10 +53,6 @@ for (const name of args) {
51
53
  options
52
54
  );
53
55
 
54
- if (properties.verbose) {
55
- console.log(artifact);
56
- }
57
-
58
56
  await Promise.all(
59
57
  publishingDetails.map(publishDetail =>
60
58
  output.publish(artifact, publishDetail)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.59.6",
3
+ "version": "1.59.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },