2016-07-07 20:10:05 +02:00

15 lines
298 B
JavaScript

'use strict';
const BbPromise = require('bluebird');
module.exports = {
validate() {
if (!this.serverless.config.servicePath) {
throw new this.serverless.classes
.Error('This command can only be run inside a service directory');
}
return BbPromise.resolve();
},
};