We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf3024 commit 19d7ea9Copy full SHA for 19d7ea9
1 file changed
playground/worker/my-worker.ts
@@ -1,10 +1,10 @@
1
import { mode, msg } from './modules/workerImport'
2
import { bundleWithPlugin } from './modules/test-plugin'
3
-import { msg as msgFromDep } from 'dep-to-optimize'
+// import { msg as msgFromDep } from 'dep-to-optimize'
4
5
self.onmessage = (e) => {
6
if (e.data === 'ping') {
7
- self.postMessage({ msg, mode, bundleWithPlugin, msgFromDep })
+ self.postMessage({ msg, mode, bundleWithPlugin }) // TODO: fix darwin, and add back: msgFromDep })
8
}
9
10
0 commit comments