@php-wasm/node
Advanced tools
Comparing version 0.1.19 to 0.1.20
@@ -305,7 +305,7 @@ // Generated by dts-bundle-generator v7.2.0 | ||
* | ||
* @param settings - The Node.js filesystem settings. | ||
* @param path - The path to mount the filesystem to. | ||
* @param localPath - The path of a real local directory you want to mount. | ||
* @param virtualFSPath - Where to mount it in the virtual filesystem. | ||
* @see {@link https://emscripten.org/docs/api_reference/Filesystem-API.html#FS.mount} | ||
*/ | ||
mount(settings: any, path: string): void; | ||
mount(localPath: string | MountSettings, virtualFSPath: string): void; | ||
} | ||
@@ -320,2 +320,6 @@ export interface WithFilesystem { | ||
*/ | ||
mkdir(path: string): void; | ||
/** | ||
* @deprecated Use mkdir instead. | ||
*/ | ||
mkdirTree(path: string): void; | ||
@@ -483,2 +487,4 @@ /** | ||
/** @inheritDoc */ | ||
mkdir(path: string): void; | ||
/** @inheritDoc */ | ||
mkdirTree(path: string): void; | ||
@@ -500,3 +506,3 @@ /** @inheritDoc */ | ||
/** @inheritDoc */ | ||
mount(settings: MountSettings, path: string): void; | ||
mount(localPath: string | MountSettings, virtualFSPath: string): void; | ||
} | ||
@@ -503,0 +509,0 @@ /** |
{ | ||
"name": "@php-wasm/node", | ||
"version": "0.1.19", | ||
"version": "0.1.20", | ||
"description": "PHP.wasm for Node.js", | ||
@@ -29,5 +29,5 @@ "repository": { | ||
"license": "(GPL-2.0-or-later OR MPL-2.0)", | ||
"main": "index.js", | ||
"main": "index.cjs", | ||
"types": "index.d.ts", | ||
"gitHead": "ce0d93a79ad524677200b7e956ae1543d774696e", | ||
"gitHead": "bbe56ef04fa9740506efed428ef8c89de7223d96", | ||
"dependencies": { | ||
@@ -34,0 +34,0 @@ "comlink": "4.4.1", |
Sorry, the diff of this file is not supported yet
95397873
4271