1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
This commit is contained in:
Quinton Ashley 2022-04-29 12:29:32 -05:00
parent 84a01e3215
commit 6474d983dc
2 changed files with 4 additions and 1 deletions

3
jdk.js
View File

@ -233,6 +233,9 @@
trans = e.data; trans = e.data;
resolve(); resolve();
}; };
worker.onerror = (e) => {
reject(e);
};
}); });
} else { } else {
console.warn( console.warn(

View File

@ -1,6 +1,6 @@
{ {
"name": "java2js", "name": "java2js",
"version": "1.2.10", "version": "1.2.11",
"description": "Converts Java to JavaScript and runs it with a JS JDK", "description": "Converts Java to JavaScript and runs it with a JS JDK",
"main": "jdk.js", "main": "jdk.js",
"scripts": { "scripts": {