mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
const shelljs = require('shelljs');
|
|
const {resolve} = require('canonical-path');
|
|
const {CONTENTS_PATH} = require('../config');
|
|
|
|
shelljs.cd(resolve(CONTENTS_PATH, 'cli-src'));
|
|
shelljs.exec('git clean -Xfd');
|
|
shelljs.exec('yarn install');
|