fix(deps): update dependency asia to ^0.19.0 #23
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.17.1
->^0.19.0
Release Notes
olstenlarck/asia
v0.19.7
Compare Source
Bug fixes
v0.19.6
Compare Source
Bug fixes
v0.19.5
Compare Source
Bug fixes
v0.19.4
Compare Source
Bug fixes
codeframe
the default CI reporterv0.19.3
Compare Source
Docs
v0.19.2
Compare Source
Bug fixes
src/reporters/tap.js
when failing (remove the colon after filepath)v0.19.1
Compare Source
Bug fixes
src/reporters/codeframe.js
when there is no source framev0.19.0
Compare Source
Features
codeframe
reporter, try it out with-R codeframe
Basically, it's exact visual copy of the ESLint's one. :) It's also minimalist by default, which means that you need to pass
--no-min
to see passed, skipped, and todo tests printed. Otherwise it will only show the failing ones.If there is no failing tests it shows
No errors found. :)
in green, once.Checkout this example, or clone the repo and run it. It's colored, of course.
v0.18.2
Compare Source
Bug fixes
v0.18.1
Compare Source
Bug fixes
foo.mjs
in root is working correctly with Babel// TODO
markersThe Babel thing. So.
By default, we does nothing with Babel or with
esm
loader. You need to install whatever babel you want with whatever you want config. The only required thing is to use--require @​babel/register
and we will load Babel's config wherever it is.Same applies for the
esm
loader.All in all, the CLI is just a thin wrapper on top of
node
with support for globbing and spawning each file in subprocess usingchild_process.fork
.That's why
--require
hooks are Just Working - they are just passed to the Nodejs bin.v0.18.0
Compare Source
Workers 🎉
Not sure if it's a big change, since we were using
execa
which usescp.spawn
, but..In anyway, this architecture allows us to make correct TAP reporter (try
asia -R tap
), at least.The
start
andfinish
events are called only once per CLI run. There are alsobefore
andafter
events, that are run for each file - we are using them in the Mini reporter.Renovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Enabled.
♻️ Rebasing: Whenever PR is stale, or if you modify the PR title to begin with "
rebase!
".🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot. View repository job log here.