Skip to content

Commit

Permalink
Do not ignore .d.ts files, update wasm module
Browse files Browse the repository at this point in the history
  • Loading branch information
swallez committed Oct 26, 2023
1 parent d592a7c commit 0af4072
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ node_modules
# Build output directory
dist/
flight-recorder-generator/output
*.d.ts
java-generator/*.js
specification/**/*.js
specification/lib

Expand Down
2 changes: 1 addition & 1 deletion compiler-rs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.idea
target
target/
8 changes: 8 additions & 0 deletions compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* @param {string} json
* @param {string} flavor
* @returns {string}
*/
export function convert_schema_to_openapi(json: string, flavor: string): string;
Binary file modified compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* tslint:disable */
/* eslint-disable */
export const memory: WebAssembly.Memory;
export function convert_schema_to_openapi(a: number, b: number, c: number, d: number, e: number): void;
export function __wbindgen_add_to_stack_pointer(a: number): number;
export function __wbindgen_malloc(a: number, b: number): number;
export function __wbindgen_realloc(a: number, b: number, c: number, d: number): number;
export function __wbindgen_free(a: number, b: number, c: number): void;
1 change: 1 addition & 0 deletions compiler/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0af4072

Please sign in to comment.