UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

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); }, });