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
Running npm run build will not search recursively inside child folders and so will not run npm run build:client. Is it a wanted comportment?
In my mind, running npm run stuff would run all subtasks, even with more than 1 :.
The text was updated successfully, but these errors were encountered:
Hey, this is something I honestly waffled on, and decided not to support it right out the gate.
The reasons I held back:
I figured it was easier to add this later than to take it away later
The :'s are there as namespaces, so for instance if I have test:unit and test:cover:unit, conceptually that is just how I want it (the latter running code coverage instrumentation), but I wouldn't want to run test and have it also repetitively pick up the coverage stuff; when I reviewed my huge cache of npm scripts, I saw a lot of cases like this that made me want to be less aggressive)
The more scripts you have the more ordering is likely to matter, and right now the implicit batching just relies on unspecified glob-order, so before considering this I think I'd really want Order default-index/batch parent scripts by package.json order #2 to be included
Hi,
If we have this folder structure:
Running
npm run build
will not search recursively inside child folders and so will not runnpm run build:client
. Is it a wanted comportment?In my mind, running
npm run stuff
would run all subtasks, even with more than 1:
.The text was updated successfully, but these errors were encountered: