@lvce-editor/extension-host-worker 5.32.0 → 5.33.0
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.
|
@@ -2195,7 +2195,7 @@ const mkdirExternal = async uri => {
|
|
|
2195
2195
|
return await invoke$1('FileSystem.mkdir', uri);
|
|
2196
2196
|
};
|
|
2197
2197
|
const writeFileExternal = async (uri, content) => {
|
|
2198
|
-
return await invoke$1('FileSystem.
|
|
2198
|
+
return await invoke$1('FileSystem.writeFile', uri, content);
|
|
2199
2199
|
};
|
|
2200
2200
|
const readDirWithFileTypesExternal = async path => {
|
|
2201
2201
|
// TODO when file is local,
|