mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-23 23:59:27 +08:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
'use strict';
|
|
|
|
// Runs `npm install` in cwd
|
|
|
|
var NpmTask = require('./npm-task');
|
|
|
|
module.exports = NpmTask.extend({
|
|
command: 'install',
|
|
startProgressMessage: 'Installing packages for tooling via npm',
|
|
completionMessage: 'Installed packages for tooling via npm.'
|
|
});
|