@swc/wasm 1.10.0 → 1.10.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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "강동윤 <kdy1997.dev@gmail.com>"
5
5
  ],
6
6
  "description": "wasm module for swc",
7
- "version": "1.10.0",
7
+ "version": "1.10.1",
8
8
  "license": "Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",
package/wasm.d.ts CHANGED
@@ -1,6 +1,42 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
 
4
+ export function minify(src: string, opts?: JsMinifyOptions): Promise<Output>;
5
+ export function minifySync(code: string, opts?: JsMinifyOptions): Output;
6
+
7
+ export function parse(src: string, options: ParseOptions & {
8
+ isModule: false;
9
+ }): Promise<Script>;
10
+ export function parse(src: string, options?: ParseOptions): Promise<Module>;
11
+ export function parseSync(src: string, options: ParseOptions & {
12
+ isModule: false;
13
+ }): Script;
14
+ export function parseSync(src: string, options?: ParseOptions): Module;
15
+
16
+ export function print(m: Program, options?: Options): Promise<Output>;
17
+ export function printSync(m: Program, options?: Options): Output
18
+
19
+ /**
20
+ * Note: this interface currently does not do _actual_ async work, only provides
21
+ * a corresponding async interfaces to the `@swc/core`'s interface.
22
+ */
23
+ export function transform(
24
+ code: string | Program,
25
+ options?: Options,
26
+ experimental_plugin_bytes_resolver?: any
27
+ ): Promise<Output>;
28
+ /**
29
+ * @param {string} code
30
+ * @param {Options} opts
31
+ * @param {Record<string, ArrayBuffer>} experimental_plugin_bytes_resolver An object contains bytes array for the plugin
32
+ * specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental
33
+ * interface, likely will change.
34
+ * @returns {Output}
35
+ */
36
+ export function transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output;
37
+
38
+
39
+
4
40
  export interface Plugin {
5
41
  (module: Program): Program;
6
42
  }
@@ -2794,39 +2830,3 @@ export interface Invalid extends Node, HasSpan {
2794
2830
  }
2795
2831
 
2796
2832
 
2797
-
2798
- export function minify(src: string, opts?: JsMinifyOptions): Promise<Output>;
2799
- export function minifySync(code: string, opts?: JsMinifyOptions): Output;
2800
-
2801
- export function parse(src: string, options: ParseOptions & {
2802
- isModule: false;
2803
- }): Promise<Script>;
2804
- export function parse(src: string, options?: ParseOptions): Promise<Module>;
2805
- export function parseSync(src: string, options: ParseOptions & {
2806
- isModule: false;
2807
- }): Script;
2808
- export function parseSync(src: string, options?: ParseOptions): Module;
2809
-
2810
- export function print(m: Program, options?: Options): Promise<Output>;
2811
- export function printSync(m: Program, options?: Options): Output
2812
-
2813
- /**
2814
- * Note: this interface currently does not do _actual_ async work, only provides
2815
- * a corresponding async interfaces to the `@swc/core`'s interface.
2816
- */
2817
- export function transform(
2818
- code: string | Program,
2819
- options?: Options,
2820
- experimental_plugin_bytes_resolver?: any
2821
- ): Promise<Output>;
2822
- /**
2823
- * @param {string} code
2824
- * @param {Options} opts
2825
- * @param {Record<string, ArrayBuffer>} experimental_plugin_bytes_resolver An object contains bytes array for the plugin
2826
- * specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental
2827
- * interface, likely will change.
2828
- * @returns {Output}
2829
- */
2830
- export function transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output;
2831
-
2832
-
package/wasm.js CHANGED
@@ -531,16 +531,6 @@ module.exports.__wbg_value_2ab8a198c834c26a = function(arg0) {
531
531
  return addHeapObject(ret);
532
532
  };
533
533
 
534
- module.exports.__wbg_call_3bfa248576352471 = function() { return handleError(function (arg0, arg1, arg2) {
535
- const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
536
- return addHeapObject(ret);
537
- }, arguments) };
538
-
539
- module.exports.__wbindgen_is_null = function(arg0) {
540
- const ret = getObject(arg0) === null;
541
- return ret;
542
- };
543
-
544
534
  module.exports.__wbg_new_1073970097e5a420 = function(arg0, arg1) {
545
535
  try {
546
536
  var state0 = {a: arg0, b: arg1};
@@ -560,15 +550,25 @@ module.exports.__wbg_new_1073970097e5a420 = function(arg0, arg1) {
560
550
  }
561
551
  };
562
552
 
563
- module.exports.__wbg_set_f975102236d3c502 = function(arg0, arg1, arg2) {
564
- getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
553
+ module.exports.__wbindgen_is_null = function(arg0) {
554
+ const ret = getObject(arg0) === null;
555
+ return ret;
565
556
  };
566
557
 
558
+ module.exports.__wbg_call_3bfa248576352471 = function() { return handleError(function (arg0, arg1, arg2) {
559
+ const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
560
+ return addHeapObject(ret);
561
+ }, arguments) };
562
+
567
563
  module.exports.__wbindgen_error_new = function(arg0, arg1) {
568
564
  const ret = new Error(getStringFromWasm0(arg0, arg1));
569
565
  return addHeapObject(ret);
570
566
  };
571
567
 
568
+ module.exports.__wbg_set_f975102236d3c502 = function(arg0, arg1, arg2) {
569
+ getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
570
+ };
571
+
572
572
  module.exports.__wbg_new_abda76e883ba8a5f = function() {
573
573
  const ret = new Error();
574
574
  return addHeapObject(ret);
@@ -787,7 +787,7 @@ module.exports.__wbg_queueMicrotask_c5419c06eab41e73 = function(arg0) {
787
787
  queueMicrotask(getObject(arg0));
788
788
  };
789
789
 
790
- module.exports.__wbindgen_closure_wrapper14476 = function(arg0, arg1, arg2) {
790
+ module.exports.__wbindgen_closure_wrapper14468 = function(arg0, arg1, arg2) {
791
791
  const ret = makeMutClosure(arg0, arg1, 987, __wbg_adapter_50);
792
792
  return addHeapObject(ret);
793
793
  };
package/wasm_bg.wasm CHANGED
Binary file