pmcf 6.3.1 → 6.3.3

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
@@ -33,6 +33,7 @@ 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;
36
37
 
37
38
  const pkgDir = await packageDirectory({ cwd: options.root });
38
39
  const pkg = JSON.parse(await readFile(join(pkgDir, "package.json"), "utf8"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.3.1",
3
+ "version": "6.3.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -53,7 +53,7 @@
53
53
  "aggregated-map": "^1.0.7",
54
54
  "content-entry-transform": "^1.6.9",
55
55
  "ip-utilties": "^3.4.0",
56
- "npm-pkgbuild": "^20.7.12",
56
+ "npm-pkgbuild": "^20.8.0",
57
57
  "pacc": "^10.4.1",
58
58
  "package-directory": "^8.2.0"
59
59
  },
package/src/base.mjs CHANGED
@@ -218,10 +218,6 @@ export class Base {
218
218
  }
219
219
  }
220
220
 
221
- isNamed(name) {
222
- return name[0] === "/" ? this.fullName === name : this.name === name;
223
- }
224
-
225
221
  *find(pattern) {
226
222
  const seen = new Set();
227
223
 
@@ -461,7 +457,6 @@ export class Base {
461
457
 
462
458
  try {
463
459
  if ((await stat(dir)).isDirectory) {
464
- console.log(dir, this.typeName, node.typeName);
465
460
  yield transform(
466
461
  new FileContentProvider(
467
462
  { dir, pattern: "**/*" },