UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

12 lines (11 loc) 434 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isSandbox = isSandbox; function isSandbox() { return (!!process.env.SANDBOX_RUNTIME || !!process.env.GEMINI_SANDBOX || !!process.env.CODEX_SANDBOX || // Codex only sets CODEX_SANDBOX on macOS; on Linux it sets this instead. !!process.env.CODEX_SANDBOX_NETWORK_DISABLED || !!process.env.CURSOR_SANDBOX); }