ts-log-adapter-ava
| Branch | Status |
|---|---|
| master |
An adapter for the ts-log interface that pushes logging to ava.
npm i @userfrosting/ts-log-adapter-avaimport test from "ava";
import { logAdapter } from "@userfrosting/ts-log-adapter-ava";
import main from "./main.js";
test("example", t => {
const result = main(logAdapter(t.log));
t.true(result);
});API documentation is regenerated for every release using API Extractor and API Documenter. The results reside in docs/api.
Generally speaking, all releases should first traverse through alpha, beta, and rc (release candidate) to catch missed bugs and gather feedback as appropriate. Aside from this however, there are a few steps that MUST always be done.
- Make sure
CHANGELOG.mdis up to date. - Update version via
npmlikenpm version 3.0.0ornpm version patch. npm publish.- Create release on GitHub from tag made by
npm version.