@php-wasm/web 0.9.38 → 0.9.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.
@@ -1,4 +1,4 @@
1
- import { Emscripten, MountHandler, PHP } from '../../../universal/src/index.ts';
1
+ import { Emscripten, MountHandler, PHP } from '@php-wasm/universal';
2
2
  declare global {
3
3
  interface FileSystemFileHandle {
4
4
  move(target: FileSystemDirectoryHandle): Promise<void>;
@@ -1,4 +1,4 @@
1
- import { PHPLoaderModule, SupportedPHPVersion } from '../../../universal/src/index.ts';
1
+ import { PHPLoaderModule, SupportedPHPVersion } from '@php-wasm/universal';
2
2
  /**
3
3
  * Loads the PHP loader module for the given PHP version.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { EmscriptenOptions, PHPLoaderModule, SupportedPHPVersion } from '../../../universal/src/index.ts';
1
+ import { EmscriptenOptions, PHPLoaderModule, SupportedPHPVersion } from '@php-wasm/universal';
2
2
  export interface LoaderOptions {
3
3
  emscriptenOptions?: EmscriptenOptions;
4
4
  onPhpLoaderModuleLoaded?: (module: PHPLoaderModule) => void;
@@ -1,4 +1,4 @@
1
- import { PHPWorker } from '../../../universal/src/index.ts';
1
+ import { PHPWorker } from '@php-wasm/universal';
2
2
  import { Remote } from 'comlink';
3
3
  export interface Client extends Remote<PHPWorker> {
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@php-wasm/web",
3
- "version": "0.9.38",
3
+ "version": "0.9.39",
4
4
  "description": "PHP.wasm for the web",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@
29
29
  "type": "module",
30
30
  "main": "index.js",
31
31
  "types": "index.d.ts",
32
- "gitHead": "f07ef4e59813c2d43d71d639237457b029dea995",
32
+ "gitHead": "cbb5ec6aeed54bebf0fd6503f207c93261b3e4ba",
33
33
  "engines": {
34
34
  "node": ">=16.15.1",
35
35
  "npm": ">=8.11.0"
@@ -40,10 +40,10 @@
40
40
  "ini": "4.1.2",
41
41
  "ws": "8.18.0",
42
42
  "yargs": "17.7.2",
43
- "@php-wasm/universal": "0.9.38",
44
- "@php-wasm/util": "0.9.38",
45
- "@php-wasm/logger": "0.9.38",
46
- "@php-wasm/fs-journal": "0.9.38",
47
- "@php-wasm/web-service-worker": "0.9.38"
43
+ "@php-wasm/universal": "0.9.39",
44
+ "@php-wasm/util": "0.9.39",
45
+ "@php-wasm/logger": "0.9.39",
46
+ "@php-wasm/fs-journal": "0.9.39",
47
+ "@php-wasm/web-service-worker": "0.9.39"
48
48
  }
49
49
  }