soda-nodejs 0.1.0 → 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.
@@ -1,2 +1,7 @@
1
+ export * from "./utils/check7zip";
1
2
  export * from "./utils/execAsync";
3
+ export * from "./utils/install7zip";
4
+ export * from "./utils/saveFile";
2
5
  export * from "./utils/spawnAsync";
6
+ export * from "./utils/unzip";
7
+ export * from "./utils/zip";
package/dist/cjs/index.js CHANGED
@@ -16,11 +16,21 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
16
16
  // src/index.ts
17
17
  var src_exports = {};
18
18
  module.exports = __toCommonJS(src_exports);
19
+ __reExport(src_exports, require("./utils/check7zip"), module.exports);
19
20
  __reExport(src_exports, require("./utils/execAsync"), module.exports);
21
+ __reExport(src_exports, require("./utils/install7zip"), module.exports);
22
+ __reExport(src_exports, require("./utils/saveFile"), module.exports);
20
23
  __reExport(src_exports, require("./utils/spawnAsync"), module.exports);
24
+ __reExport(src_exports, require("./utils/unzip"), module.exports);
25
+ __reExport(src_exports, require("./utils/zip"), module.exports);
21
26
  // Annotate the CommonJS export names for ESM import in node:
22
27
  0 && (module.exports = {
28
+ ...require("./utils/check7zip"),
23
29
  ...require("./utils/execAsync"),
24
- ...require("./utils/spawnAsync")
30
+ ...require("./utils/install7zip"),
31
+ ...require("./utils/saveFile"),
32
+ ...require("./utils/spawnAsync"),
33
+ ...require("./utils/unzip"),
34
+ ...require("./utils/zip")
25
35
  });
26
36
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "sourcesContent": ["export * from \"@utils/execAsync\"\nexport * from \"@utils/spawnAsync\"\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,8BAAd;AACA,wBAAc,+BADd;",
4
+ "sourcesContent": ["export * from \"@utils/check7zip\"\nexport * from \"@utils/execAsync\"\nexport * from \"@utils/install7zip\"\nexport * from \"@utils/saveFile\"\nexport * from \"@utils/spawnAsync\"\nexport * from \"@utils/unzip\"\nexport * from \"@utils/zip\"\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,8BAAd;AACA,wBAAc,8BADd;AAEA,wBAAc,gCAFd;AAGA,wBAAc,6BAHd;AAIA,wBAAc,+BAJd;AAKA,wBAAc,0BALd;AAMA,wBAAc,wBANd;",
6
6
  "names": []
7
7
  }
@@ -1,2 +1,7 @@
1
+ export * from "./utils/check7zip";
1
2
  export * from "./utils/execAsync";
3
+ export * from "./utils/install7zip";
4
+ export * from "./utils/saveFile";
2
5
  export * from "./utils/spawnAsync";
6
+ export * from "./utils/unzip";
7
+ export * from "./utils/zip";
package/dist/esm/index.js CHANGED
@@ -1,3 +1,8 @@
1
+ export * from "./utils/check7zip";
1
2
  export * from "./utils/execAsync";
3
+ export * from "./utils/install7zip";
4
+ export * from "./utils/saveFile";
2
5
  export * from "./utils/spawnAsync";
6
+ export * from "./utils/unzip";
7
+ export * from "./utils/zip";
3
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from \"@utils/execAsync\"\nexport * from \"@utils/spawnAsync\"\n"],"mappings":"AAAA;AACA"}
1
+ {"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from \"@utils/check7zip\"\nexport * from \"@utils/execAsync\"\nexport * from \"@utils/install7zip\"\nexport * from \"@utils/saveFile\"\nexport * from \"@utils/spawnAsync\"\nexport * from \"@utils/unzip\"\nexport * from \"@utils/zip\"\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soda-nodejs",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
package/src/index.ts CHANGED
@@ -1,2 +1,7 @@
1
+ export * from "@utils/check7zip"
1
2
  export * from "@utils/execAsync"
3
+ export * from "@utils/install7zip"
4
+ export * from "@utils/saveFile"
2
5
  export * from "@utils/spawnAsync"
6
+ export * from "@utils/unzip"
7
+ export * from "@utils/zip"