We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--only
--ignore
I removed the capability to accept multiple patterns in 0.19.0 for a little bit of simplicity and consistency with deno test --filter.
0.19.0
deno test --filter
However,
molt --only "@std|@chiezo"
is probably less ergonomic than
molt --only=@std,@chiezo
Also, WalkOptions.match provides an API to filter files with multiple patterns. So the design is also consistent with the Deno ecosystem.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I removed the capability to accept multiple patterns in
0.19.0
for a little bit of simplicity and consistency withdeno test --filter
.However,
molt --only "@std|@chiezo"
is probably less ergonomic than
Also, WalkOptions.match provides an API to filter files with multiple patterns. So the design is also consistent with the Deno ecosystem.
The text was updated successfully, but these errors were encountered: