DecadeMoon

Results 18 comments of DecadeMoon

That looks like eslint errors; you shouldn't be linting vendor files.

This is a good rule to abide by but not 100% of the time. There are legitimate cases where this rule should not apply, and doing so is actually detrimental.

I’ve turned off this rule in my codebase because it’s more hassle than it’s worth.

Rendering this text: ``` text I will give you \$2 if you can solve $y = x^2$. ``` with this delimiter: ``` js { left: '$', right: '$', display: false...

Webpack 4 + pnp-webpack-plugin did not have this issue. What changed?

I "fixed" this problem by ignoring files in the `.yarn` directory: ``` watchOptions.ignored = /\/\.yarn\// ``` I think it's a good compromise until the issue is fixed.

I have the same issue with Yarn 2 PnP. I resolved it by adding to `.yarnrc.yml` the following and then running `yarn install`: ```yml packageExtensions: babel-plugin-transform-vue-jsx@*: dependencies: "@babel/helper-module-imports": "*" ```...

I'm not sure if this is related, but for me, sometimes when `threads` is enabled some workers never complete and the webpack build stalls. I'm not sure if this is...

I'm also interested in Vue implementing callback refs. They're so much more powerful in my opinion. In my situation, as a workaround, I've resorted to storing a reference to the...

Why do we have to opt out workspace folders instead of opt in? I don't understand your justification @connectdotz.