pmcf 6.3.1 → 6.3.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/package.json +1 -1
- package/src/base.mjs +0 -5
package/package.json
CHANGED
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: "**/*" },
|