pmcf 6.3.3 → 6.3.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.
Files changed (2) hide show
  1. package/bin/pmcf-package +1 -2
  2. package/package.json +1 -1
package/bin/pmcf-package CHANGED
@@ -33,7 +33,6 @@ if (options.define) {
33
33
  options.output = options.output
34
34
  ? resolve(cwd(), options.output)
35
35
  : await mkdtemp(join(tmpdir(), "pmcf"));
36
- options.noPreserve = true;
37
36
 
38
37
  const pkgDir = await packageDirectory({ cwd: options.root });
39
38
  const pkg = JSON.parse(await readFile(join(pkgDir, "package.json"), "utf8"));
@@ -48,7 +47,7 @@ for (const object of root.find(args)) {
48
47
  }
49
48
  const stagingDir = join(options.output, object.fullName);
50
49
 
51
- for await (const { sources, outputs, properties } of object.preparePackages(
50
+ for await (let { sources, outputs, properties } of object.preparePackages(
52
51
  stagingDir
53
52
  )) {
54
53
  console.log(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.3.3",
3
+ "version": "6.3.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },