UNPKG

nx

Version:

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

19 lines (18 loc) 539 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const output_1 = require("../../utils/output"); const server_1 = require("./server"); const process = tslib_1.__importStar(require("process")); (async () => { try { await (0, server_1.startServer)(); } catch (err) { output_1.output.error({ title: err?.message || 'Something unexpected went wrong when starting the server', }); process.exit(1); } })();