UNPKG

@sanity/pkg-utils

Version:

Simple utilities for modern npm packages.

18 lines (17 loc) 357 B
import { check } from "./check.js"; import { handleError } from "./handleError.js"; async function checkAction(options) { try { await check({ cwd: process.cwd(), strict: options.strict, tsconfig: options.tsconfig }); } catch (err) { handleError(err); } } export { checkAction }; //# sourceMappingURL=checkAction.js.map