You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any chance to avoid deep import references, so the cli will be yarn compatible?
For example the following code tasks/e2e.ts#L43: // webdriver-manager can only be accessed via a deep import from within // protractor/node_modules. A double deep import if you will. const webdriverUpdate = requireProjectModule(projectRoot, 'protractor/node_modules/webdriver-manager/built/lib/cmds/update');
is raising:
Error: Cannot find module 'protractor/node_modules/webdriver-manager/built/lib/cmds/update'
(yarn keeps only the .bin cmd refs inside protractor/node_modules/)
Thank you.
The text was updated successfully, but these errors were encountered:
Is there any chance to avoid deep import references, so the cli will be yarn compatible?
For example the following code tasks/e2e.ts#L43:
// webdriver-manager can only be accessed via a deep import from within // protractor/node_modules. A double deep import if you will. const webdriverUpdate = requireProjectModule(projectRoot, 'protractor/node_modules/webdriver-manager/built/lib/cmds/update');
is raising:
Error: Cannot find module 'protractor/node_modules/webdriver-manager/built/lib/cmds/update'
(yarn keeps only the
.bin
cmd refs insideprotractor/node_modules/
)Thank you.
The text was updated successfully, but these errors were encountered: