UNPKG

ember-cli

Version:

Command line tool for developing ambitious ember.js apps

13 lines (9 loc) 240 B
'use strict'; const GenerateTask = require('./generate-from-blueprint'); class DestroyTask extends GenerateTask { constructor(options) { super(options); this.blueprintFunction = 'uninstall'; } } module.exports = DestroyTask;