mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-21 21:09:49 +08:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes * **New Features** * Added Stack CLI with authentication (login/logout) commands. * Added project management commands to list and create projects. * Added configuration management to pull and push project settings. * Added code execution capability to run JavaScript expressions. * Added initialization command for Stack Auth setup. * **Tests** * Added comprehensive end-to-end test suite for CLI functionality. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
export class CliError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = "CliError";
|
|
}
|
|
}
|
|
|
|
export class AuthError extends CliError {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = "AuthError";
|
|
}
|
|
}
|