soda-nodejs 0.6.2 → 0.6.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/dist/cjs/index.d.ts +8 -7
- package/dist/cjs/index.js +0 -22
- package/dist/cjs/index.js.map +2 -2
- package/dist/esm/index.d.ts +8 -7
- package/dist/esm/index.js +1 -7
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +8 -7
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export { CompressionParams } from "./utils/compress";
|
|
2
|
-
export { CopyOptions } from "./utils/copy";
|
|
3
|
-
export { IconvDecodeOptions } from "./utils/execAsync";
|
|
4
|
-
export { SaveFileOptions } from "./utils/saveFile";
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
1
|
+
export type { CompressionParams } from "./utils/compress";
|
|
2
|
+
export type { CopyOptions } from "./utils/copy";
|
|
3
|
+
export type { IconvDecodeOptions } from "./utils/execAsync";
|
|
4
|
+
export type { SaveFileOptions } from "./utils/saveFile";
|
|
5
|
+
export { getDefaultOptions, setDefaultOptions, spawnAsync } from "./utils/spawnAsync";
|
|
6
|
+
export type { Options, PromiseWithChildProcess } from "./utils/spawnAsync";
|
|
7
|
+
export type { UnzipOptions } from "./utils/unzip";
|
|
8
|
+
export type { ZipOptions } from "./utils/zip";
|
package/dist/cjs/index.js
CHANGED
|
@@ -19,36 +19,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
19
19
|
// src/index.ts
|
|
20
20
|
var src_exports = {};
|
|
21
21
|
__export(src_exports, {
|
|
22
|
-
CompressionParams: () => import_compress.CompressionParams,
|
|
23
|
-
CopyOptions: () => import_copy.CopyOptions,
|
|
24
|
-
IconvDecodeOptions: () => import_execAsync.IconvDecodeOptions,
|
|
25
|
-
Options: () => import_spawnAsync.Options,
|
|
26
|
-
PromiseWithChildProcess: () => import_spawnAsync.PromiseWithChildProcess,
|
|
27
|
-
SaveFileOptions: () => import_saveFile.SaveFileOptions,
|
|
28
|
-
UnzipOptions: () => import_unzip.UnzipOptions,
|
|
29
|
-
ZipOptions: () => import_zip.ZipOptions,
|
|
30
22
|
getDefaultOptions: () => import_spawnAsync.getDefaultOptions,
|
|
31
23
|
setDefaultOptions: () => import_spawnAsync.setDefaultOptions,
|
|
32
24
|
spawnAsync: () => import_spawnAsync.spawnAsync
|
|
33
25
|
});
|
|
34
26
|
module.exports = __toCommonJS(src_exports);
|
|
35
|
-
var import_compress = require("./utils/compress");
|
|
36
|
-
var import_copy = require("./utils/copy");
|
|
37
|
-
var import_execAsync = require("./utils/execAsync");
|
|
38
|
-
var import_saveFile = require("./utils/saveFile");
|
|
39
27
|
var import_spawnAsync = require("./utils/spawnAsync");
|
|
40
|
-
var import_unzip = require("./utils/unzip");
|
|
41
|
-
var import_zip = require("./utils/zip");
|
|
42
28
|
// Annotate the CommonJS export names for ESM import in node:
|
|
43
29
|
0 && (module.exports = {
|
|
44
|
-
CompressionParams,
|
|
45
|
-
CopyOptions,
|
|
46
|
-
IconvDecodeOptions,
|
|
47
|
-
Options,
|
|
48
|
-
PromiseWithChildProcess,
|
|
49
|
-
SaveFileOptions,
|
|
50
|
-
UnzipOptions,
|
|
51
|
-
ZipOptions,
|
|
52
30
|
getDefaultOptions,
|
|
53
31
|
setDefaultOptions,
|
|
54
32
|
spawnAsync
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.ts"],
|
|
4
|
-
"sourcesContent": ["export { CompressionParams } from \"@/utils/compress\"\nexport { CopyOptions } from \"@/utils/copy\"\nexport { IconvDecodeOptions } from \"@/utils/execAsync\"\nexport { SaveFileOptions } from \"@/utils/saveFile\"\nexport {
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
4
|
+
"sourcesContent": ["export type { CompressionParams } from \"@/utils/compress\"\nexport type { CopyOptions } from \"@/utils/copy\"\nexport type { IconvDecodeOptions } from \"@/utils/execAsync\"\nexport type { SaveFileOptions } from \"@/utils/saveFile\"\nexport { getDefaultOptions, setDefaultOptions, spawnAsync } from \"@/utils/spawnAsync\"\nexport type { Options, PromiseWithChildProcess } from \"@/utils/spawnAsync\"\nexport type { UnzipOptions } from \"@/utils/unzip\"\nexport type { ZipOptions } from \"@/utils/zip\"\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA,wBAAiE;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export { CompressionParams } from "./utils/compress";
|
|
2
|
-
export { CopyOptions } from "./utils/copy";
|
|
3
|
-
export { IconvDecodeOptions } from "./utils/execAsync";
|
|
4
|
-
export { SaveFileOptions } from "./utils/saveFile";
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
1
|
+
export type { CompressionParams } from "./utils/compress";
|
|
2
|
+
export type { CopyOptions } from "./utils/copy";
|
|
3
|
+
export type { IconvDecodeOptions } from "./utils/execAsync";
|
|
4
|
+
export type { SaveFileOptions } from "./utils/saveFile";
|
|
5
|
+
export { getDefaultOptions, setDefaultOptions, spawnAsync } from "./utils/spawnAsync";
|
|
6
|
+
export type { Options, PromiseWithChildProcess } from "./utils/spawnAsync";
|
|
7
|
+
export type { UnzipOptions } from "./utils/unzip";
|
|
8
|
+
export type { ZipOptions } from "./utils/zip";
|
package/dist/esm/index.js
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { CopyOptions } from "./utils/copy";
|
|
3
|
-
export { IconvDecodeOptions } from "./utils/execAsync";
|
|
4
|
-
export { SaveFileOptions } from "./utils/saveFile";
|
|
5
|
-
export { Options, PromiseWithChildProcess, getDefaultOptions, setDefaultOptions, spawnAsync } from "./utils/spawnAsync";
|
|
6
|
-
export { UnzipOptions } from "./utils/unzip";
|
|
7
|
-
export { ZipOptions } from "./utils/zip";
|
|
1
|
+
export { getDefaultOptions, setDefaultOptions, spawnAsync } from "./utils/spawnAsync";
|
|
8
2
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["getDefaultOptions","setDefaultOptions","spawnAsync"],"sources":["../../src/index.ts"],"sourcesContent":["export type { CompressionParams } from \"@/utils/compress\"\nexport type { CopyOptions } from \"@/utils/copy\"\nexport type { IconvDecodeOptions } from \"@/utils/execAsync\"\nexport type { SaveFileOptions } from \"@/utils/saveFile\"\nexport { getDefaultOptions, setDefaultOptions, spawnAsync } from \"@/utils/spawnAsync\"\nexport type { Options, PromiseWithChildProcess } from \"@/utils/spawnAsync\"\nexport type { UnzipOptions } from \"@/utils/unzip\"\nexport type { ZipOptions } from \"@/utils/zip\"\n"],"mappings":"AAIA,SAASA,iBAAiB,EAAEC,iBAAiB,EAAEC,UAAU"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export { CompressionParams } from "@/utils/compress"
|
|
2
|
-
export { CopyOptions } from "@/utils/copy"
|
|
3
|
-
export { IconvDecodeOptions } from "@/utils/execAsync"
|
|
4
|
-
export { SaveFileOptions } from "@/utils/saveFile"
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
1
|
+
export type { CompressionParams } from "@/utils/compress"
|
|
2
|
+
export type { CopyOptions } from "@/utils/copy"
|
|
3
|
+
export type { IconvDecodeOptions } from "@/utils/execAsync"
|
|
4
|
+
export type { SaveFileOptions } from "@/utils/saveFile"
|
|
5
|
+
export { getDefaultOptions, setDefaultOptions, spawnAsync } from "@/utils/spawnAsync"
|
|
6
|
+
export type { Options, PromiseWithChildProcess } from "@/utils/spawnAsync"
|
|
7
|
+
export type { UnzipOptions } from "@/utils/unzip"
|
|
8
|
+
export type { ZipOptions } from "@/utils/zip"
|