'use strict';
// Runs `npm uninstall` in cwd
const NpmTask = require('./npm-task');
const formatPackageList = require('../utilities/format-package-list');
class NpmUninstallTask extends NpmTask {
constructor(options) {
super(options);
this.command = 'uninstall';
}
formatStartMessage(packages) {
return `${this.useYarn ? 'Yarn' : 'npm'}: Uninstalling ${formatPackageList(packages)} ...`;
}
formatCompleteMessage(packages) {
return `${this.useYarn ? 'Yarn' : 'npm'}: Uninstalled ${formatPackageList(packages)}`;
}
}
module.exports = NpmUninstallTask;
# |
Change |
User |
Description |
Committed |
|
#1
|
23539 |
jenbottom |
Adding the basic code for ember test appk, created with 'ember new' command |
|
|