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
Unlike NPM, yarn run can run local modules in addition to project.json scripts.
I managed to do that locally with the following simple changes:
localbins=matchers.create_files_matcher('node_modules/.bin/*.')
-- ... skip some parser code"run"..parser({bins, scripts}),
And this works, with 2 limitations that I am not sure how to fix:
I would like to color the scripts to make them more prominent. I tried to color_text the results but it didn't work.
it seems create_files_matcher returns . and ... create_dirs_matcher has some code to avoid that, it should probably be added to create_files_matcher as well.
The text was updated successfully, but these errors were encountered:
@jods4, thanks for the suggestion! Could you take a look at the linked PR? I'm not actively using Cmder these days and i'm not a yarn user so I can't verify the changes right now
Unlike NPM,
yarn run
can run local modules in addition toproject.json
scripts.I managed to do that locally with the following simple changes:
And this works, with 2 limitations that I am not sure how to fix:
color_text
the results but it didn't work.create_files_matcher
returns.
and..
.create_dirs_matcher
has some code to avoid that, it should probably be added tocreate_files_matcher
as well.The text was updated successfully, but these errors were encountered: