UNPKG

@nrwl/schematics

Version:

Extensible Dev Tools for Monorepos: Schematics

12 lines (11 loc) 402 B
"use strict"; 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'; }); } };