UNPKG

angular-cli-ghpages

Version:

Deploy your Angular app to GitHub Pages or Cloudflare Pages directly from the Angular CLI (ng deploy)

174 lines 7.47 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getRemoteUrl = exports.injectTokenIntoRepoUrl = exports.appendCIMetadata = exports.warnDeprecatedParameters = exports.handleUserCredentials = exports.mapNegatedBooleans = exports.cleanupMonkeypatch = exports.setupMonkeypatch = void 0; const util = __importStar(require("util")); const git_1 = __importDefault(require("gh-pages/lib/git")); const utilMutable = require('util'); let originalDebuglog = null; function setupMonkeypatch(logger) { if (originalDebuglog !== null) { return; } originalDebuglog = utilMutable.debuglog; utilMutable.debuglog = (set) => { if (set === 'gh-pages') { return function (...args) { const message = util.format.apply(util, args); logger.info(message); }; } return originalDebuglog(set); }; } exports.setupMonkeypatch = setupMonkeypatch; function cleanupMonkeypatch() { if (originalDebuglog) { utilMutable.debuglog = originalDebuglog; originalDebuglog = null; } } exports.cleanupMonkeypatch = cleanupMonkeypatch; function mapNegatedBooleans(options, origOptions) { if (origOptions.noDotfiles !== undefined) { options.dotfiles = !origOptions.noDotfiles; } if (origOptions.noNotfound !== undefined) { options.notfound = !origOptions.noNotfound; } if (origOptions.noNojekyll !== undefined) { options.nojekyll = !origOptions.noNojekyll; } } exports.mapNegatedBooleans = mapNegatedBooleans; function handleUserCredentials(options, origOptions, logger) { if (options.name && options.email) { options.user = { name: options.name, email: options.email }; } else if (options.name || options.email) { logger.warn('WARNING: Both --name and --email must be set together to configure git user. ' + (options.name ? 'Only --name is set.' : 'Only --email is set.') + ' Git will use the local or global git config instead.'); } } exports.handleUserCredentials = handleUserCredentials; function warnDeprecatedParameters(origOptions, logger) { if (origOptions.noSilent !== undefined) { logger.warn('The --no-silent parameter is deprecated and no longer needed. ' + 'Verbose logging is now always enabled. This parameter will be ignored.'); } } exports.warnDeprecatedParameters = warnDeprecatedParameters; function appendCIMetadata(options) { if (process.env.TRAVIS) { options.message += ' -- ' + (process.env.TRAVIS_COMMIT_MESSAGE || '') + ' \n\n' + 'Triggered by commit: https://github.com/' + (process.env.TRAVIS_REPO_SLUG || '') + '/commit/' + (process.env.TRAVIS_COMMIT || '') + '\n' + 'Travis CI build: ' + (process.env.TRAVIS_BUILD_WEB_URL || ''); } if (process.env.CIRCLECI) { options.message += '\n\n' + 'Triggered by commit: https://github.com/' + (process.env.CIRCLE_PROJECT_USERNAME || '') + '/' + (process.env.CIRCLE_PROJECT_REPONAME || '') + '/commit/' + (process.env.CIRCLE_SHA1 || '') + '\n' + 'CircleCI build: ' + (process.env.CIRCLE_BUILD_URL || ''); } if (process.env.GITHUB_ACTIONS) { options.message += '\n\n' + 'Triggered by commit: https://github.com/' + (process.env.GITHUB_REPOSITORY || '') + '/commit/' + (process.env.GITHUB_SHA || '') + '\n' + 'GitHub Actions build: ' + (process.env.GITHUB_SERVER_URL || 'https://github.com') + '/' + (process.env.GITHUB_REPOSITORY || '') + '/actions/runs/' + (process.env.GITHUB_RUN_ID || ''); } } exports.appendCIMetadata = appendCIMetadata; function injectTokenIntoRepoUrl(options) { return __awaiter(this, void 0, void 0, function* () { if (!options.repo) { options.repo = yield getRemoteUrl(options); } if (process.env.GH_TOKEN && options.repo && options.repo.includes('GH_TOKEN')) { options.repo = options.repo.replace('GH_TOKEN', process.env.GH_TOKEN); } else if (options.repo && !options.repo.includes('x-access-token:')) { if (process.env.GH_TOKEN) { options.repo = options.repo.replace('https://github.com/', `https://x-access-token:${process.env.GH_TOKEN}@github.com/`); } else if (process.env.PERSONAL_TOKEN) { options.repo = options.repo.replace('https://github.com/', `https://x-access-token:${process.env.PERSONAL_TOKEN}@github.com/`); } else if (process.env.GITHUB_TOKEN) { options.repo = options.repo.replace('https://github.com/', `https://x-access-token:${process.env.GITHUB_TOKEN}@github.com/`); } } }); } exports.injectTokenIntoRepoUrl = injectTokenIntoRepoUrl; function getRemoteUrl(options) { return __awaiter(this, void 0, void 0, function* () { const git = new git_1.default(process.cwd(), options.git); return yield git.getRemoteUrl(options.remote); }); } exports.getRemoteUrl = getRemoteUrl; //# sourceMappingURL=engine.prepare-options-helpers.js.map