Results 47 comments of Tom Davidson

This workaround assumes node, but would help keep .nvmrc in sync with package.json: `"scripts": { "preinstall": "echo $(node -p -e 'require(\"./package\").engines.node') > .nvmrc && nvm install && nvm use", `...

@Dentrax if you run `gitleaks --no-git` do you get hits in your node_modules dir where as with out `--no-git` the .gitignore is used?

Yes, that is what I meant in step #2. If that is not the intended design, then this would be a feature request and not a bug. I attempted to...

Thanks for the quick and detailed reply. I would like to declare the configuration of my "provider repos" in code and by configuration rather than scripts. I do see such...

Ive just `--ignore-path

I like the ignore object to configure, but I think .gitignore could still be a just works default.

@evilebottnawi in the mean time you can do something such as: ``` js "compile": "npm-run-all -p compile:ts:*", "compile:ts:cjs": "time tsc --p tsconfig.commonjs.json $*", ``` Would work for most bash users,...

I do not work on osx or win very much but both supports pipe (powershell and git bash...). Would these be equivalent? `npm-run-all -w \"get-json-async\" \"jq 'json selector'\" \"write-to-file\"` and...

Looks like there is no abstraction around lerna but the software is small enough the change wouldn't be that big. What about a workaround that copied npm workspaces to lerna...

Actually what/who is using the exported [getLernaPackages](https://github.com/intuit/auto/blob/main/packages/core/src/auto.ts#L2316) ? Rather than the npm equivalent of `lerna ls -pla` we coud read the package.json and the lerna.json file. Reading the files rather...