UNPKG

nx

Version:

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

9 lines (8 loc) 407 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MS_PER_DAY = exports.MS_PER_MINUTE = exports.MS_PER_SECOND = void 0; // Shared time constants. The window UNIT differs per PM (npm: days, pnpm/yarn: // minutes, bun: seconds); each reader converts its value to ms using these. exports.MS_PER_SECOND = 1_000; exports.MS_PER_MINUTE = 60_000; exports.MS_PER_DAY = 86_400_000;