@ui5/linter
Version:
A static code analysis tool for UI5
12 lines • 370 B
JavaScript
import { initLogger } from "./logger.js";
import updateNotifier from "./updateNotifier.js";
/**
* Base middleware for CLI commands.
*
* This middleware should be executed for every CLI command to enable basic features (e.g. logging).
*/
export default async function (argv) {
await initLogger(argv);
await updateNotifier();
}
//# sourceMappingURL=base.js.map