npm-pkgbuild 7.14.4 → 7.14.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "7.14.4",
3
+ "version": "7.14.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -27,15 +27,13 @@ export class NPMPackContentProvider extends ContentProvider {
27
27
  }
28
28
 
29
29
  async *[Symbol.asyncIterator]() {
30
- console.log("pacote", this.dir);
31
-
32
30
  const entries = [];
33
31
 
34
32
  await pacote.tarball.stream(this.dir, async stream => {
35
33
  const extract = tar.extract();
36
34
 
37
35
  extract.on("entry", async (header, stream, next) => {
38
- // console.log(header);
36
+ console.log(header.name);
39
37
  stream.on("end", () => next());
40
38
 
41
39
  const chunks = [];
@@ -43,8 +41,6 @@ export class NPMPackContentProvider extends ContentProvider {
43
41
  chunks.push(chunk);
44
42
  }
45
43
 
46
- console.log(header.name.substring);
47
-
48
44
  entries.push(
49
45
  Object.assign(
50
46
  new BufferContentEntry(