@lvce-editor/test-worker 9.5.0 → 9.6.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 +6 -1
- package/package.json +1 -1
package/dist/testWorkerMain.js
CHANGED
|
@@ -1113,6 +1113,10 @@ const createLazyRpc = rpcId => {
|
|
|
1113
1113
|
};
|
|
1114
1114
|
};
|
|
1115
1115
|
|
|
1116
|
+
const handleFileWatcherEvent = async event => {
|
|
1117
|
+
// console.log('event')
|
|
1118
|
+
};
|
|
1119
|
+
|
|
1116
1120
|
// @ts-nocheck
|
|
1117
1121
|
|
|
1118
1122
|
const getPlatform = () => {
|
|
@@ -3935,7 +3939,8 @@ const execute = async (href, platform, assetDir) => {
|
|
|
3935
3939
|
|
|
3936
3940
|
const commandMap = {
|
|
3937
3941
|
'Test.execute': execute,
|
|
3938
|
-
'Test.executeMock': executeMock
|
|
3942
|
+
'Test.executeMock': executeMock,
|
|
3943
|
+
'FileWatcher.handleEvent': handleFileWatcherEvent
|
|
3939
3944
|
};
|
|
3940
3945
|
|
|
3941
3946
|
const send = async port => {
|