2017-11-01 12:05:11 +01:00
|
|
|
const fs = require('fs');
|
|
|
|
|
const sh = require('shelljs');
|
|
|
|
|
|
2018-04-06 21:09:12 -07:00
|
|
|
const PATCH_LOCK = 'node_modules/@angular/cli/.patched';
|
2017-11-01 12:05:11 +01:00
|
|
|
|
|
|
|
|
if (!fs.existsSync(PATCH_LOCK)) {
|
|
|
|
|
sh.touch(PATCH_LOCK);
|
|
|
|
|
}
|
|
|
|
|
|