'use strict'; const RUNTIME_001 = 'RUNTIME-001'; const RUNTIME_002 = 'RUNTIME-002'; const RUNTIME_003 = 'RUNTIME-003'; const RUNTIME_004 = 'RUNTIME-004'; const RUNTIME_005 = 'RUNTIME-005'; const RUNTIME_006 = 'RUNTIME-006'; const RUNTIME_007 = 'RUNTIME-007'; const RUNTIME_008 = 'RUNTIME-008'; const TYPE_001 = 'TYPE-001'; const BUILD_001 = 'BUILD-001'; const getDocsUrl = (errorCode)=>{ const type = errorCode.split('-')[0].toLowerCase(); return `https://module-federation.io/guide/troubleshooting/${type}/${errorCode}`; }; const getShortErrorMsg = (errorCode, errorDescMap, args, originalErrorMsg)=>{ const msg = [ `${[ errorDescMap[errorCode] ]} #${errorCode}` ]; args && msg.push(`args: ${JSON.stringify(args)}`); msg.push(getDocsUrl(errorCode)); originalErrorMsg && msg.push(`Original Error Message:\n ${originalErrorMsg}`); return msg.join('\n'); }; function _extends() { _extends = Object.assign || function assign(target) { for(var i = 1; i < arguments.length; i++){ var source = arguments[i]; for(var key in source)if (Object.prototype.hasOwnProperty.call(source, key)) target[key] = source[key]; } return target; }; return _extends.apply(this, arguments); } const runtimeDescMap = { [RUNTIME_001]: 'Failed to get remoteEntry exports.', [RUNTIME_002]: 'The remote entry interface does not contain "init"', [RUNTIME_003]: 'Failed to get manifest.', [RUNTIME_004]: 'Failed to locate remote.', [RUNTIME_005]: 'Invalid loadShareSync function call from bundler runtime', [RUNTIME_006]: 'Invalid loadShareSync function call from runtime', [RUNTIME_007]: 'Failed to get remote snapshot.', [RUNTIME_008]: 'Failed to load script resources.' }; const typeDescMap = { [TYPE_001]: 'Failed to generate type declaration.' }; const buildDescMap = { [BUILD_001]: 'Failed to find expose module.' }; const errorDescMap = _extends({}, runtimeDescMap, typeDescMap, buildDescMap); exports.BUILD_001 = BUILD_001; exports.RUNTIME_001 = RUNTIME_001; exports.RUNTIME_002 = RUNTIME_002; exports.RUNTIME_003 = RUNTIME_003; exports.RUNTIME_004 = RUNTIME_004; exports.RUNTIME_005 = RUNTIME_005; exports.RUNTIME_006 = RUNTIME_006; exports.RUNTIME_007 = RUNTIME_007; exports.RUNTIME_008 = RUNTIME_008; exports.TYPE_001 = TYPE_001; exports.buildDescMap = buildDescMap; exports.errorDescMap = errorDescMap; exports.getShortErrorMsg = getShortErrorMsg; exports.runtimeDescMap = runtimeDescMap; exports.typeDescMap = typeDescMap;