๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ci = require("./cli-installed-next.json"); | |
| const gh = require("./cli-github-next.json"); | |
| const cv = require("./cli-verdaccio-next.json"); | |
| const filterPkgs = (obj, str) => { | |
| const ret = []; | |
| for (const pkg of Object.keys(obj.packages)) { | |
| if (pkg === "" || pkg.startsWith("__tests__")) continue; | |
| if (pkg === "node_modules/@zowe/cli") continue; | |
| if (obj.packages[pkg].dev) continue; |