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
{{ message }}
This repository was archived by the owner on Jun 10, 2025. It is now read-only.
Something that can participate in the build process but doesn't necessarily produce any files. For instance, running a node app or linting. Using a directory transform means you either copy all of the files or leave the output empty and have a node that can't go any further.
For running a server, the directory transform approach seems to be ok, since you typically don't care so much about the output once it's kicked off. It might be pretty handy for a linter though, so it could fail the build and just pass its input dir downstream.
Or have I strayed too far from build tool into task runner territory?