1.0.3 • Published 5 years ago

@lambdalabs/base-generator v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Lambda Labs Generator Base class

This base class has common functions used in multiple generators.

Using the base class

When creating a new app generator or sub-generator start off with this template.

const BaseGenerator = require('@lambdalabs/base-generator');

module.exports = class extends BaseGenerator {
  constructor(args, opts) {
    super(args, opts);
  }
}