zip-lib 1.0.2 → 1.0.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/lib/cancelable.js CHANGED
@@ -63,4 +63,3 @@ class Cancelable {
63
63
  }
64
64
  }
65
65
  exports.Cancelable = Cancelable;
66
- //# sourceMappingURL=cancelable.js.map
package/lib/fs.js CHANGED
@@ -173,4 +173,3 @@ function isRootPath(target) {
173
173
  return false;
174
174
  }
175
175
  exports.isRootPath = isRootPath;
176
- //# sourceMappingURL=fs.js.map
package/lib/index.js CHANGED
@@ -54,4 +54,3 @@ function extract(zipFile, targetFolder, options) {
54
54
  return unzip.extract(zipFile, targetFolder);
55
55
  }
56
56
  exports.extract = extract;
57
- //# sourceMappingURL=index.js.map
package/lib/unzip.js CHANGED
@@ -356,4 +356,3 @@ class Unzip extends cancelable_1.Cancelable {
356
356
  }
357
357
  }
358
358
  exports.Unzip = Unzip;
359
- //# sourceMappingURL=unzip.js.map
package/lib/util.js CHANGED
@@ -47,4 +47,3 @@ function readlink(path) {
47
47
  return util.promisify(fs.readlink)(path);
48
48
  }
49
49
  exports.readlink = readlink;
50
- //# sourceMappingURL=util.js.map
package/lib/zip.js CHANGED
@@ -211,4 +211,3 @@ class Zip extends cancelable_1.Cancelable {
211
211
  }
212
212
  }
213
213
  exports.Zip = Zip;
214
- //# sourceMappingURL=zip.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zip-lib",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "zip and unzip library for node",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -8,7 +8,8 @@
8
8
  "release": "rimraf ./lib && tsc -p ./src/tsconfig.release.json",
9
9
  "compile-test": "rimraf ./test/out && tsc -p ./test/src/tsconfig.json",
10
10
  "test": "node ./test/src/before.js && mocha ./test/out --timeout 10000",
11
- "pack": "npm run release && npm pack"
11
+ "pack": "npm run release && npm pack",
12
+ "publish": "npm run release && npm publish"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git",