UNPKG

@nrwl/schematics

Version:

Extensible Dev Tools for Monorepos: Schematics

12 lines (11 loc) 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const workspace_1 = require("@nrwl/workspace"); exports.default = { description: 'Update npm scripts to use the nx command', run: () => { workspace_1.updateJsonFile('package.json', json => { json.scripts = Object.assign({}, json.scripts, { 'dep-graph': './node_modules/.bin/nx dep-graph', 'affected:dep-graph': './node_modules/.bin/nx affected dep-graph' }); }); } };