fc5af69fb2
project layout was updated using: yarn ng update @angular/cli --migrate-only --from=1.7.3 PR Close #23234
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
const fs = require('fs');
|
|
const sh = require('shelljs');
|
|
|
|
const PATCH_LOCK = 'node_modules/@angular/cli/.patched';
|
|
|
|
if (!fs.existsSync(PATCH_LOCK)) {
|
|
sh.touch(PATCH_LOCK);
|
|
}
|
|
|