UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

14 lines 525 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.findNodes = void 0; const typescript_1 = require("nx/src/utils/typescript"); // TODO(v16): This should be removed. /** * @deprecated This function is deprecated and no longer supported. */ function findNodes(node, kind, max = Infinity) { console.warn('"findNodes" is deprecated and no longer supported.'); return (0, typescript_1.findNodes)(node, kind, max); } exports.findNodes = findNodes; //# sourceMappingURL=find-nodes.js.map