60 lines
1.4 KiB
JavaScript

'use strict';
const BbPromise = require('bluebird');
const path = require('path');
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.config.servicePath || '';
this.packagePath = this.options.package ||
this.serverless.service.package.path ||
path.join(this.servicePath || '.', '.serverless');
Object.assign(
this,
packageService,
zipService
);
this.commands = {
package: {
usage: 'Packages a Serverless service',
lifecycleEvents: [
'cleanup',
'initialize',
'setupProviderConfiguration',
'createDeploymentArtifacts',
'compileFunctions',
'compileEvents',
'finalize',
],
options: {
stage: {
usage: 'Stage of the service',
shortcut: 's',
},
region: {
usage: 'Region of the service',
shortcut: 'r',
},
package: {
usage: 'Output path for the package',
shortcut: 'p',
},
},
},
};
this.hooks = {
'package:createDeploymentArtifacts': () => BbPromise.bind(this)
.then(this.packageService),
};
}
}
module.exports = Package;