mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
92 lines
2.9 KiB
JavaScript
Executable File
92 lines
2.9 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
require('essentials');
|
|
|
|
// global graceful-fs patch
|
|
// https://github.com/isaacs/node-graceful-fs#global-patching
|
|
require('graceful-fs').gracefulify(require('fs'));
|
|
|
|
if (require('../lib/utils/tabCompletion/isSupported') && process.argv[2] === 'completion') {
|
|
require('../lib/utils/autocomplete')();
|
|
return;
|
|
}
|
|
|
|
const handleError = require('../lib/cli/handle-error');
|
|
|
|
let serverless;
|
|
|
|
process.once('uncaughtException', (error) =>
|
|
handleError(error, {
|
|
isUncaughtException: true,
|
|
isLocallyInstalled: serverless && serverless.isLocallyInstalled,
|
|
})
|
|
);
|
|
|
|
const processSpanPromise = (async () => {
|
|
try {
|
|
const wait = require('timers-ext/promise/sleep');
|
|
await wait(); // Ensure access to "processSpanPromise"
|
|
require('../lib/utils/analytics').sendPending({
|
|
serverlessExecutionSpan: processSpanPromise,
|
|
});
|
|
|
|
if (await require('../lib/cli/eventually-list-version')()) return;
|
|
|
|
const uuid = require('uuid');
|
|
const Serverless = require('../lib/Serverless');
|
|
const resolveConfigurationPath = require('../lib/cli/resolve-configuration-path');
|
|
const isHelpRequest = require('../lib/cli/is-help-request');
|
|
const readConfiguration = require('../lib/configuration/read');
|
|
|
|
const configurationPath = await resolveConfigurationPath();
|
|
const configuration = configurationPath
|
|
? await (async () => {
|
|
try {
|
|
return await readConfiguration(configurationPath);
|
|
} catch (error) {
|
|
// Configuration syntax error should not prevent help from being displayed
|
|
// (if possible configuration should be read for help request as registered
|
|
// plugins may introduce new commands to be listed in help output)
|
|
if (isHelpRequest()) return null;
|
|
throw error;
|
|
}
|
|
})()
|
|
: null;
|
|
|
|
serverless = new Serverless({
|
|
configuration,
|
|
configurationPath: configuration && configurationPath,
|
|
});
|
|
|
|
try {
|
|
serverless.onExitPromise = processSpanPromise;
|
|
serverless.invocationId = uuid.v4();
|
|
await serverless.init();
|
|
if (serverless.invokedInstance) {
|
|
serverless.invokedInstance.invocationId = serverless.invocationId;
|
|
serverless = serverless.invokedInstance;
|
|
}
|
|
await serverless.run();
|
|
} catch (error) {
|
|
// If Enterprise Plugin, capture error
|
|
let enterpriseErrorHandler = null;
|
|
serverless.pluginManager.plugins.forEach((p) => {
|
|
if (p.enterprise && p.enterprise.errorHandler) {
|
|
enterpriseErrorHandler = p.enterprise.errorHandler;
|
|
}
|
|
});
|
|
if (!enterpriseErrorHandler) throw error;
|
|
try {
|
|
await enterpriseErrorHandler(error, serverless.invocationId);
|
|
} catch (enterpriseErrorHandlerError) {
|
|
process.stdout.write(`${enterpriseErrorHandlerError.stack}\n`);
|
|
}
|
|
throw error;
|
|
}
|
|
} catch (error) {
|
|
handleError(error);
|
|
}
|
|
})();
|