UNPKG

angular-cli

Version:
164 lines 8.48 kB
"use strict"; var semver_1 = require('semver'); var chalk_1 = require('chalk'); var common_tags_1 = require('common-tags'); var fs_1 = require('fs'); var path = require('path'); var config_1 = require('../models/config'); var resolve = require('resolve'); function _findUp(name, from) { var currentDir = from; while (currentDir && currentDir !== path.parse(currentDir).root) { var p = path.join(currentDir, name); if (fs_1.existsSync(p)) { return p; } currentDir = path.dirname(currentDir); } return null; } function _hasOldCliBuildFile() { return fs_1.existsSync(_findUp('angular-cli-build.js', process.cwd())) || fs_1.existsSync(_findUp('angular-cli-build.ts', process.cwd())) || fs_1.existsSync(_findUp('ember-cli-build.js', process.cwd())) || fs_1.existsSync(_findUp('angular-cli-build.js', __dirname)) || fs_1.existsSync(_findUp('angular-cli-build.ts', __dirname)) || fs_1.existsSync(_findUp('ember-cli-build.js', __dirname)); } var Version = (function () { function Version(_version) { if (_version === void 0) { _version = null; } this._version = _version; this._semver = null; this._semver = _version && new semver_1.SemVer(_version); } Version.prototype.isAlpha = function () { return this.qualifier == 'alpha'; }; Version.prototype.isBeta = function () { return this.qualifier == 'beta'; }; Version.prototype.isReleaseCandidate = function () { return this.qualifier == 'rc'; }; Version.prototype.isKnown = function () { return this._version !== null; }; Version.prototype.isLocal = function () { return this.isKnown() && path.isAbsolute(this._version); }; Version.prototype.isGreaterThanOrEqualTo = function (other) { return this._semver.compare(other) >= 0; }; Object.defineProperty(Version.prototype, "major", { get: function () { return this._semver ? this._semver.major : 0; }, enumerable: true, configurable: true }); Object.defineProperty(Version.prototype, "minor", { get: function () { return this._semver ? this._semver.minor : 0; }, enumerable: true, configurable: true }); Object.defineProperty(Version.prototype, "patch", { get: function () { return this._semver ? this._semver.patch : 0; }, enumerable: true, configurable: true }); Object.defineProperty(Version.prototype, "qualifier", { get: function () { return this._semver ? this._semver.prerelease[0] : ''; }, enumerable: true, configurable: true }); Object.defineProperty(Version.prototype, "extra", { get: function () { return this._semver ? this._semver.prerelease[1] : ''; }, enumerable: true, configurable: true }); Version.prototype.toString = function () { return this._version; }; Version.fromProject = function () { var packageJson = null; try { var angularCliPath = resolve.sync('angular-cli', { basedir: process.cwd(), packageFilter: function (pkg, pkgFile) { packageJson = pkg; } }); if (angularCliPath && packageJson) { try { return new Version(packageJson.version); } catch (e) { return new Version(null); } } } catch (e) { } var configPath = config_1.CliConfig.configFilePath(); if (configPath === null) { return new Version(null); } var configJson = fs_1.readFileSync(configPath, 'utf8'); try { var json = JSON.parse(configJson); return new Version(json.project && json.project.version); } catch (e) { return new Version(null); } }; Version.assertAngularVersionIs2_3_1OrHigher = function (projectRoot) { var angularCorePath = path.join(projectRoot, 'node_modules/@angular/core'); var pkgJson = fs_1.existsSync(angularCorePath) ? JSON.parse(fs_1.readFileSync(path.join(angularCorePath, 'package.json'), 'utf8')) : null; // Just check @angular/core. if (pkgJson && pkgJson['version']) { var v = new Version(pkgJson['version']); if (v.isLocal()) { console.warn(chalk_1.yellow('Using a local version of angular. Proceeding with care...')); } else { if (!v.isGreaterThanOrEqualTo(new semver_1.SemVer('2.3.1'))) { console.error(chalk_1.bold(chalk_1.red((_a = ["\n This version of CLI is only compatible with angular version 2.3.1 or better. Please\n upgrade your angular version, e.g. by running:\n \n npm install @angular/core@latest\n "], _a.raw = ["\n This version of CLI is only compatible with angular version 2.3.1 or better. Please\n upgrade your angular version, e.g. by running:\n \n npm install @angular/core@latest\n "], common_tags_1.stripIndents(_a)) + '\n'))); process.exit(3); } } } else { console.error(chalk_1.bold(chalk_1.red((_b = ["\n You seem to not be dependending on \"@angular/core\". This is an error.\n "], _b.raw = ["\n You seem to not be dependending on \"@angular/core\". This is an error.\n "], common_tags_1.stripIndents(_b))))); process.exit(2); } var _a, _b; }; Version.assertPostWebpackVersion = function () { if (this.isPreWebpack()) { console.error(chalk_1.bold(chalk_1.red('\n' + (_a = ["\n It seems like you're using a project generated using an old version of the Angular CLI.\n The latest CLI now uses webpack and has a lot of improvements including a simpler\n workflow, a faster build, and smaller bundles.\n\n To get more info, including a step-by-step guide to upgrade the CLI, follow this link:\n https://github.com/angular/angular-cli/wiki/Upgrading-from-Beta.10-to-Beta.14\n "], _a.raw = ["\n It seems like you're using a project generated using an old version of the Angular CLI.\n The latest CLI now uses webpack and has a lot of improvements including a simpler\n workflow, a faster build, and smaller bundles.\n\n To get more info, including a step-by-step guide to upgrade the CLI, follow this link:\n https://github.com/angular/angular-cli/wiki/Upgrading-from-Beta.10-to-Beta.14\n "], common_tags_1.stripIndents(_a)) + '\n'))); process.exit(1); } else { // Verify that there's no build file. if (_hasOldCliBuildFile()) { console.error(chalk_1.bold(chalk_1.yellow('\n' + (_b = ["\n It seems like you're using the newest version of the Angular CLI that uses webpack.\n This version does not require an angular-cli-build file, but your project has one.\n It will be ignored.\n "], _b.raw = ["\n It seems like you're using the newest version of the Angular CLI that uses webpack.\n This version does not require an angular-cli-build file, but your project has one.\n It will be ignored.\n "], common_tags_1.stripIndents(_b)) + '\n'))); } } var _a, _b; }; Version.isPreWebpack = function () { // CliConfig is a bit stricter with the schema, so we need to be a little looser with it. var version = Version.fromProject(); if (version && version.isKnown()) { if (version.major == 0) { return true; } else if (version.minor != 0) { return false; } else if (version.isBeta() && !version.toString().match(/webpack/)) { var betaVersion = version.extra; if (parseInt(betaVersion) < 12) { return true; } } } else { return _hasOldCliBuildFile(); } return false; }; return Version; }()); exports.Version = Version; //# sourceMappingURL=/Users/hans/Sources/angular-cli/packages/angular-cli/upgrade/version.js.map