@baseplate-dev/sync
Version:
Library for syncing Baseplate descriptions
20 lines • 413 B
JavaScript
/**
* A map of pre-set priorities for post-write commands
*
* Lower numbers are higher priority
*/
export const POST_WRITE_COMMAND_PRIORITY = {
/**
* Installation of dependencies e.g. pnpm install
*/
DEPENDENCIES: 100,
/**
* Code generation e.g. pnpm prisma schema
*/
CODEGEN: 200,
/**
* Default phase
*/
DEFAULT: 300,
};
//# sourceMappingURL=types.js.map