Cheng Liu

Results 61 comments of Cheng Liu

Workaround: ``` rm -rf || true && pnpm install --config.cacheDir= ```

Updated the workaround, because there is no `--cache-dir` cli parameter, so you can specify `config.cacheDir=xxx` to pass down configuration to pnpm

for anyone run into this issue, my solution is to specify custom tsconfig for this loader ```js // webpack.config.js { loader: 'react-docgen-typescript-loader', options: { tsconfigPath: path.resolve(__dirname, 'path/to/your/tsconfig.json') }, }, ```...

sure, rebased

I am excited to see this improvement! I would like to put some thoughts here: 1. Is there any pattern to share code in subspace pnpmfile.js across different subspaces? If...

Hi @sunWoodsen , could you provide a minimal reproduce repository? It helps me a to debug your problem.

Hi @nathancahill , Does this option https://github.com/chengcyber/rollup-plugin-monaco-editor#esm work for you? You can set `esm: false` explicitly to output commonjs spec service worker code.

Hey @SSanjeevi , thank you for bringing this topic to us! For Sparo, Technically, we can refactor codebase to introduce something like "monorepo tool" abstraction. By doing this, I believe...

Here is another user scenario that build cache can help to restore things when the building process doesn't hit cache. There are lots of tools supporting "incremental" cache, such as...

> This feature should be very easy for repo maintainers to enable; ideally they shouldn't have to deploy a Node.js, or have a private registry, or author a plugin Would...