Andy Young
Andy Young
> In the end I implemented something in userland that is a version of @Charioteer's nested middleware suggestion. Big thanks for sharing, @olivierwilkinson - this is fantastic. Minor observation that...
_Update: Using bare double-dash for this no longer works since #1405 (`v1.3.0` release), which changes the behaviour to pass arguments after the double-dash through to the command run by `npm`...
Turns out `npm` supports passing config via environment variables using the `npm_config_` prefix, so e.g. this does the trick: `npm_config_loglevel=silent turbo run test` https://docs.npmjs.com/cli/v8/using-npm/config#environment-variables https://docs.npmjs.com/cli/v8/using-npm/config#loglevel
I used the patch file below to apply this PR using [patch-package](https://www.npmjs.com/package/patch-package), and manually edited `package-lock.json` to remove the dependency. Works like a charm! Thanks @boidolr 🙏 patches/svgo+2.8.0.patch ```patch Patch...
The ESM refactor introduced a layer of indirection for importing the JSON files, replacing `require()` with a combination of `readFileSync()` with a path computed via an expression, which together prevent...
Thanks @sofisl - fair request for MRE. Due to time constraints I'm going to stick with v4 for now - I did try creating a PR to fix but ran...
Thanks @sofisl - to reproduce this issue in your example repo, we need to create a [standalone build](https://nextjs.org/docs/pages/api-reference/next-config-js/output#automatically-copying-traced-files) - this is what activates tracing in an attempt to create the...
Thanks @sofisl - unfortunately the issue persists with 5.1.1 (including [following the instructions above](https://github.com/googleapis/google-cloud-node/issues/4858#issuecomment-1959261870) with your reproduction repo)
@ds300 I saw you approved a CI run that failed all jobs during setup - looks to have been unrelated to my changes; I've just updated against latest master branch...
**Update 2023-07-03**: PR now updated to support setting env var `PATCH_PACKAGE_IGNORE_MISSING=1` so missing packages can easily be ignored during deployment (due to pruned dependencies) but alerted during development (due to...