UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

37 lines (30 loc) 974 B
// Customize inquirer style 'use strict'; const { dirname } = require('path'); const requireUncached = require('ncjsm/require-uncached'); const resolve = require('ncjsm/resolve/sync'); const chalk = require('chalk'); const inquirersChalkPath = resolve(dirname(require.resolve('inquirer')), 'chalk'); module.exports = requireUncached(inquirersChalkPath, () => { // Ensure distinct chalk instance for inquirer and hack it with altered styles Object.defineProperties(require(inquirersChalkPath), { cyan: { get() { return chalk.bold; }, }, bold: { get() { return chalk.bold.yellow; }, }, }); // 'Serverless:' prefix const BasePrompt = require('inquirer/lib/prompts/base'); const originalGetQuestion = BasePrompt.prototype.getQuestion; BasePrompt.prototype.getQuestion = function() { this.opt.prefix = 'Serverless:'; return originalGetQuestion.call(this); }; return require('inquirer'); });