UNPKG

rush-init-project-plugin

Version:

Rush plugin for initialize project in monorepo

14 lines 498 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.runRushUpdate = void 0; var node_core_library_1 = require("@rushstack/node-core-library"); var runRushUpdate = function () { var result = node_core_library_1.Executable.spawnSync("rush", ["update"], { stdio: "inherit", }); if (result.status !== 0) { throw new Error('Run "rush update" failed'); } }; exports.runRushUpdate = runRushUpdate; //# sourceMappingURL=rushRushUpdate.js.map