pkg-preper 0.0.1 → 0.1.1

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/lib/pkg-preper.js CHANGED
@@ -99,6 +99,7 @@ class PkgPreper {
99
99
  );
100
100
  }
101
101
  })
102
+ .tap(() => stream.emit("prepared"))
102
103
  .then(() => {
103
104
  return cacache.tmp.withTmp(this._tmpDir, { tmpPrefix: "pacote-packing" }, tmp => {
104
105
  const tmpTar = Path.join(tmp, "package.tgz");
@@ -122,4 +123,4 @@ class PkgPreper {
122
123
  }
123
124
  }
124
125
 
125
- module.exports = PkgPreper;
126
+ module.exports = PkgPreper;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pkg-preper",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "Package Preparer",
5
5
  "main": "lib/pkg-preper.js",
6
6
  "scripts": {},
@@ -15,10 +15,11 @@
15
15
  },
16
16
  "license": "Artistic-2.0",
17
17
  "dependencies": {
18
- "bluebird": "^3.5.1",
19
- "cacache": "^11.2.0",
18
+ "aveazul": "^1.0.2",
19
+ "bluebird": "^3.7.2",
20
+ "cacache": "jchip/cacache",
20
21
  "mississippi": "^3.0.0",
21
- "npm-packlist": "^1.1.11",
22
+ "npm-packlist": "jchip/npm-packlist",
22
23
  "opfs": "^1.0.6",
23
24
  "tar": "^4.4.6",
24
25
  "visual-exec": "^0.1.0"