Hi,
I want to use playwright in my application which based on theia-blueprint, everything is ok except the last step.
I copy playwright to a misc folder I create in the root.I find my playwright uses a node_mudules itself after yarn build.
so my problem is how to make my playwright use the root node_modules,
as you know all packages in blueprint theia-extensions folder use the same root node_modules,
I just do not know where to set them on a different folder for example in my custom misc folder.
Is your playwright package part of your lerna workspace? If not, that would explain why it creates its own node_modules directory. Note that you can only run yarn in the root of your workspace.
Hi,
left is theia source code’s playwright, and right is mine. but I am not sure whether my playwright is in lerna workspace as you say. should I do some settings when creating a custom folder like misc to make it in lerna workspace?