@lvce-editor/test-worker 13.20.0 → 13.22.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.
- package/dist/testWorkerMain.js +2 -2
- package/package.json +1 -1
package/dist/testWorkerMain.js
CHANGED
|
@@ -3118,10 +3118,10 @@ const readFile = async uri => {
|
|
|
3118
3118
|
return invoke('FileSystem.readFile', uri);
|
|
3119
3119
|
};
|
|
3120
3120
|
const addFileHandle = async file => {
|
|
3121
|
-
|
|
3121
|
+
return invoke('FileSystem.addFileHandle', file);
|
|
3122
3122
|
};
|
|
3123
3123
|
const mkdir = async uri => {
|
|
3124
|
-
|
|
3124
|
+
return invoke('FileSystem.mkdir', uri);
|
|
3125
3125
|
};
|
|
3126
3126
|
const setFiles = async files => {
|
|
3127
3127
|
// TODO maybe have a method to send all the files to file system worker directly
|