@nrwl/schematics
Version:
12 lines (11 loc) • 402 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const workspace_1 = require("@nrwl/workspace");
exports.default = {
description: 'Update the schema file to point to the nrwl schema.',
run: () => {
workspace_1.updateJsonFile('.angular-cli.json', json => {
json['$schema'] = './node_modules/@nrwl/schematics/src/schema.json';
});
}
};