UNPKG

serverless

Version:

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

70 lines (60 loc) 1.96 kB
'use strict'; const chalk = require('chalk'); const weakMemoizee = require('memoizee/weak'); const disabledCodesByEnv = extractCodes(process.env.SLS_DEPRECATION_DISABLE); const triggeredDeprecations = new Set(); function extractCodes(codesStr) { if (!codesStr) { return new Set(); } return new Set(codesStr.split(',')); } const resolveDeprecatedByService = weakMemoizee((serviceConfig) => { let disabledDeprecations = []; if (typeof serviceConfig.disabledDeprecations === 'string') { disabledDeprecations = [serviceConfig.disabledDeprecations]; } else { disabledDeprecations = Array.from(serviceConfig.disabledDeprecations || []); } return new Set(disabledDeprecations); }); function writeDeprecation(code, message) { const prefix = 'Serverless: '; const messageLines = message.split('\n'); const followingLinesPrefix = ' '.repeat(prefix.length); for (let i = 1; i < messageLines.length; ++i) { messageLines[i] = followingLinesPrefix + messageLines[i]; } message = messageLines.join('\n'); process.stdout.write( `Serverless: ${chalk.keyword('orange')(`Deprecation warning: ${message}`)}\n` ); if (!code.startsWith('EXT_')) { process.stdout.write( ` ${chalk.keyword('orange')( `More Info: https://www.serverless.com/framework/docs/deprecations/#${code}` )}\n` ); } } module.exports = (code, message, { serviceConfig } = {}) => { try { if ( triggeredDeprecations.has(code) || disabledCodesByEnv.has(code) || disabledCodesByEnv.has('*') ) { return; } if (serviceConfig) { const serviceDisabledCodes = resolveDeprecatedByService(serviceConfig); if (serviceDisabledCodes.has(code) || serviceDisabledCodes.has('*')) { return; } } writeDeprecation(code, message); } finally { triggeredDeprecations.add(code); } }; module.exports.triggeredDeprecations = triggeredDeprecations;