Paul Draper
Paul Draper
> I understand it's technically possible to pass multiple thousands of params. Just interesting, where is this useful in the real world? For example, let's say you wanted to list...
Workaround, custom action. ```js const { Action } = require("argparse"); class AppendAction extends Action { constructor(options) { super(options); this.default = options.default; } call(_, namespace, values) { let items = namespace[this.dest];...
> With how the JS tooling ecosystem is moving towards non-JS languages (e.g. tsgo, oxc), I think the decision we make now will have long-term effects on how common PnP...