@teambit/workspace
Version:
10 lines (8 loc) • 322 B
text/typescript
import { BitError } from '@teambit/bit-error';
export class OutsideWorkspaceError extends BitError {
constructor() {
super(
`This command can only be run inside a bit workspace. Please check that you are inside a bit workspace and then re-run (to initialize a new workspace please use bit init)`
);
}
}