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
I tried to set up a monorepo with couple of deno modules and wanted to setup proper tasks with deno workspace.
Following this doc, when trying to invoke a submodule task using deno task --filter "client/*" dev or with any kind of variation of the package name i got the following error message - "No matching task or script 'dev' found in selected packages".
This got resolved for me when i have added a name property to the submodule's deno.json with the value "@scope/client".
Is this the behavior of requiring the name attribute in the submodule intended? if so, i would suggest updating the docs and maybe make the error message more informative.
In any case, would glad to contribute in that matter if my contribution is welcome :)
Thanks!
The text was updated successfully, but these errors were encountered:
Follow up question - is the name property a strict requirement for submodules in general? should any operation expect this property exist in a submodule's deno.json?
Version: Deno 2.1.6
I tried to set up a monorepo with couple of deno modules and wanted to setup proper tasks with deno workspace.
Following this doc, when trying to invoke a submodule task using
deno task --filter "client/*" dev
or with any kind of variation of the package name i got the following error message - "No matching task or script 'dev' found in selected packages".This got resolved for me when i have added a name property to the submodule's deno.json with the value "@scope/client".
Is this the behavior of requiring the name attribute in the submodule intended? if so, i would suggest updating the docs and maybe make the error message more informative.
In any case, would glad to contribute in that matter if my contribution is welcome :)
Thanks!
The text was updated successfully, but these errors were encountered: