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
When attempting to build all build/dir/*.js artifacts, you'd specify the following command line flags:
$ build/dir/\*
which in turn finds all targets matching the above selector. Note that the exact string build/out/*.js is returned and looked up in the filesystem, producing an error, as the target build/out/*.js does not represent a file, but set of files, and hence needs to be transformed.
The text was updated successfully, but these errors were encountered:
The following situation:
When attempting to build all
build/dir/*.js
artifacts, you'd specify the following command line flags:which in turn finds all targets matching the above selector. Note that the exact string
build/out/*.js
is returned and looked up in the filesystem, producing an error, as the targetbuild/out/*.js
does not represent a file, but set of files, and hence needs to be transformed.The text was updated successfully, but these errors were encountered: