monaco-editor/scripts/ci/env.ts

16 lines
343 B
TypeScript
Raw Normal View History

2023-07-31 22:00:49 +08:00
interface Env {
VSCODE_REF: string;
PRERELEASE_VERSION: string;
}
export function getNightlyEnv(): Env {
const env: Env = process.env as any;
if (!env.PRERELEASE_VERSION) {
throw new Error(`Missing PRERELEASE_VERSION in process.env`);
}
if (!env.VSCODE_REF) {
throw new Error(`Missing VSCODE_REF in process.env`);
}
return env;
2023-06-05 23:40:14 +08:00
}