2021-07-02 11:18:38 +02:00

71 lines
2.3 KiB
JavaScript

'use strict';
const BbPromise = require('bluebird');
const path = require('path');
const ServerlessError = require('../../serverless-error');
const cliCommandsSchema = require('../../cli/commands-schema');
const zipService = require('./lib/zipService');
const packageService = require('./lib/packageService');
class Package {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.servicePath = this.serverless.serviceDir || '';
this.packagePath =
this.options.package ||
this.serverless.service.package.path ||
path.join(this.servicePath || '.', '.serverless');
Object.assign(this, packageService, zipService);
this.commands = {
package: {
...cliCommandsSchema.get('package'),
commands: {
function: {
type: 'entrypoint',
lifecycleEvents: ['package'],
},
},
},
};
this.hooks = {
'initialize': () => {
const useIncludeExclude = (packageConfig = {}) =>
packageConfig.include || packageConfig.exclude;
const servicePackage = this.serverless.service.package || {};
if (
useIncludeExclude(servicePackage) ||
Object.values(this.serverless.service.functions).some((func) =>
useIncludeExclude(func.package)
) ||
Object.values(this.serverless.service.layers || {}).some((func) =>
useIncludeExclude(func.package)
)
) {
this.serverless._logDeprecation(
'NEW_PACKAGE_PATTERNS',
'Support for "package.include" and "package.exclude" will be removed with next major release. Please use "package.patterns" instead'
);
}
},
'package:createDeploymentArtifacts': async () =>
BbPromise.bind(this).then(this.packageService),
'package:function:package': async () => {
if (this.options.function) {
this.serverless.cli.log(`Packaging function: ${this.options.function}...`);
return BbPromise.resolve(this.packageFunction(this.options.function));
}
return BbPromise.reject(
new ServerlessError('Function name must be set', 'PACKAGE_MISSING_FUNCTION_OPTION')
);
},
};
}
}
module.exports = Package;