UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

13 lines (12 loc) 443 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const workspace_root_1 = require("../src/utils/workspace-root"); const package_json_1 = require("../src/plugins/package-json"); const plugin = { name: 'nx-all-package-jsons-plugin', createNodes: [ '*/**/package.json', (f) => (0, package_json_1.createNodeFromPackageJson)(f, workspace_root_1.workspaceRoot), ], }; module.exports = plugin;