Alexander Kachkaev

Results 463 comments of Alexander Kachkaev

Another example / more findings here: https://github.com/vercel/next.js/issues/29362#issuecomment-1278868452

Seems like there is a similar issue for macOS users who follow these official instructions: https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally#manually-change-npms-default-directory. They are essential for people who do not have admin rights on their machine,...

@jrock2004 see a discussion in https://github.com/Microsoft/azure-pipelines-tasks/issues/3027. There's a [comment to a gist](https://github.com/Microsoft/azure-pipelines-tasks/issues/3027#issuecomment-385740426) with a workaround. As a user of both istanbul and VSTS, I'd really like to have an option...

👋 @ctjlewis, you can try playing with https://github.com/kachkaev/njt/pull/186 where I attempt to switch a small Next.js 13 project to pure ESM with native Node module resolution. I need to use...

WDYT of sorting the list alphabetically? This will make it easier to find included packages and avoid duplicates.

How about ignoring local `node_modules` folder instead? Copying files over it helps avoid runtime issues, but local `node_modules` still end up in one of the image layers and thus increase...

🚨 This comment is partially out of date – see [below](https://github.com/vercel/next.js/issues/29362#issuecomment-1325187287) --- I managed to get `import * as wasm from "./my.wasm"` working during `next dev` / `next build` /...

I also observe flaky behavior in two public repos: https://github.com/blockprotocol/blockprotocol/actions/runs/3183425990/jobs/5190622286#step:12:35 ``` [2022-10-04T15:38:02.809Z] ['error'] There was an error running the uploader: Error uploading to https://codecov.io: Error: There was an error fetching...

@mataha would you be interested to continue this PR? @ivodolenc's [suggestion to use `ignorePatterns`](https://github.com/prettier/prettier/pull/12672#issuecomment-1256947760) makes sense – it' be great to see more alignment between ESLint and Prettier! 📖 [Docs...

Adding double quotes works for me in Yarn 4.0.0-rc.27: ```diff "scripts": { "echo:bar": "echo \"bar\"", "echo:foo": "echo \"foo\"", - "echo": "npm-run-all echo:*" + "echo": "npm-run-all \"echo:*\"" } ``` Otherwise, it...