@php-wasm/node 0.1.37 → 0.1.39

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/index.d.ts CHANGED
@@ -444,12 +444,17 @@ export type PHPLoaderModule = {
444
444
  };
445
445
  export type EmscriptenOptions = {
446
446
  onAbort?: (message: string) => void;
447
+ /**
448
+ * Set to true for debugging tricky WebAssembly errors.
449
+ */
450
+ debug?: boolean;
447
451
  ENV?: Record<string, string>;
448
452
  locateFile?: (path: string) => string;
449
453
  noInitialRun?: boolean;
450
454
  dataFileDownloads?: Record<string, number>;
451
455
  print?: (message: string) => void;
452
456
  printErr?: (message: string) => void;
457
+ quit?: (status: number, toThrow: any) => void;
453
458
  onRuntimeInitialized?: () => void;
454
459
  monitorRunDependencies?: (left: number) => void;
455
460
  } & Record<string, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@php-wasm/node",
3
- "version": "0.1.37",
3
+ "version": "0.1.39",
4
4
  "description": "PHP.wasm for Node.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,14 +25,15 @@
25
25
  "access": "public",
26
26
  "directory": "../../../dist/packages/php-wasm/node"
27
27
  },
28
- "license": "(GPL-2.0-or-later OR MPL-2.0)",
28
+ "license": "GPL-2.0-or-later",
29
29
  "main": "index.cjs",
30
30
  "types": "index.d.ts",
31
- "gitHead": "278ae7717090b6ee837b43c7d60df94dcdcaec3f",
31
+ "gitHead": "18dcdc0d24417bf9207e113d4832229e80c68a28",
32
32
  "dependencies": {
33
33
  "comlink": "4.4.1",
34
34
  "express": "4.18.2",
35
35
  "ws": "8.13.0",
36
- "@php-wasm/universal": "0.1.37"
36
+ "@php-wasm/universal": "0.1.39",
37
+ "@php-wasm/util": "0.1.37"
37
38
  }
38
39
  }
package/php_5_6.wasm CHANGED
Binary file
package/php_7_0.wasm CHANGED
Binary file
package/php_7_1.wasm CHANGED
Binary file
package/php_7_2.wasm CHANGED
Binary file
package/php_7_3.wasm CHANGED
Binary file
package/php_7_4.wasm CHANGED
Binary file
package/php_8_0.wasm CHANGED
Binary file
package/php_8_1.wasm CHANGED
Binary file
package/php_8_2.wasm CHANGED
Binary file