You've already forked serverless-webpack
mirror of
https://github.com/encounter/serverless-webpack.git
synced 2026-03-30 11:37:58 -07:00
25 lines
720 B
JavaScript
25 lines
720 B
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
const path = require('path');
|
|
|
|
/**
|
|
* Special settings for use with serverless-step-functions-offline.
|
|
*/
|
|
|
|
module.exports = {
|
|
prepareStepOfflineInvoke() {
|
|
_.set(this.serverless, 'service.package.individually', false);
|
|
|
|
return this.serverless.pluginManager.spawn('webpack:validate')
|
|
.then(() => {
|
|
if (!this.options.location && !_.get(this.serverless, 'service.custom.stepFunctionsOffline.location')) {
|
|
_.set(this.serverless, 'service.custom.stepFunctionsOffline.location',
|
|
path.relative(this.serverless.config.servicePath, path.join(this.webpackOutputPath, 'service'))
|
|
);
|
|
}
|
|
return null;
|
|
});
|
|
}
|
|
};
|