UNPKG

ember-cli

Version:

Command line tool for developing ambitious ember.js apps

18 lines (14 loc) 482 B
'use strict'; const InstallCommand = require('./install'); module.exports = InstallCommand.extend({ name: 'install:addon', description: 'This command has been deprecated. Please use `ember install` instead.', aliases: [], skipHelp: true, run() { let warning = 'This command has been deprecated. Please use `ember '; warning += 'install <addonName>` instead.'; this.ui.writeDeprecateLine(warning); return this._super.run.apply(this, arguments); }, });