mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-26 03:44:44 +01:00
.. | ||
dist | ||
package.json | ||
README.md | ||
schema.json |
@changesets/config
Utilities for reading and parsing Changeset's config
import { parse, read, ValidationError } from "@changesets/config";
let config = await read(process.cwd(), workspaces);
let config = parse({ commit: true }, workspaces);
try {
return parse({ commit: true }, workspaces);
} catch (err) {
if (err instanceof ValidationError) {
let message = err.message;
} else {
throw err;
}
}