UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

19 lines 720 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.checkAndCleanWithSemver = void 0; const semver_1 = require("semver"); function checkAndCleanWithSemver(pkgName, version) { let newVersion = version; if ((0, semver_1.valid)(newVersion)) { return newVersion; } if (version.startsWith('~') || version.startsWith('^')) { newVersion = version.substring(1); } if (!(0, semver_1.valid)(newVersion)) { throw new Error(`The package.json lists a version of ${pkgName} that Nx is unable to validate - (${version})`); } return newVersion; } exports.checkAndCleanWithSemver = checkAndCleanWithSemver; //# sourceMappingURL=version-utils.js.map