@miyucy/storybook-mcp 1.0.5 → 1.0.6
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -189,7 +189,7 @@ class Storybook {
|
|
189
189
|
for (let i = 0; i < this.AVAILABLE_PARALLELISM; i++) {
|
190
190
|
const __filename = fileURLToPath(import.meta.url);
|
191
191
|
const __dirname = path.dirname(__filename);
|
192
|
-
const worker = new Worker(path.resolve(__dirname, "
|
192
|
+
const worker = new Worker(path.resolve(__dirname, "parser.js"));
|
193
193
|
worker.on("message", (event) => {
|
194
194
|
// console.log("message", event);
|
195
195
|
const { componentPath, data } = event;
|