Jason Wang

Results 3 issues of Jason Wang

https://github.com/windicss/vite-plugin-windicss/blob/a9a6ffa2b59d27ce5b06df41fe9babb68ddf8117/packages/plugin-utils/src/resolveOptions.ts#L112-L116 这里直接拼root的方法对于想要exclude pnpm安装的node_modules会有问题:webpack插件context的resourcePath都是原始路径不是链接路径,所以scanOptions.exclude中的node_modules全部都不会按照预期的生效,它依旧会处理一些第三方库,比如`../../node_modules/.pnpm/@[email protected]_toktsx4rp6zr3oxhhtw5ts6lt4/node_modules/@arco-design/web-react/es/Menu/style/index.less`这样的文件(../../对应的其实是我最外层主项目的packages/whatever-package-name),然后触发一个解析错误 ![image](https://user-images.githubusercontent.com/3365866/170862385-d7b0b86b-e2e7-4a31-8fae-563fde32289a.png)

nw-gyp auto add _HAS_ITERATOR_DEBUGGING=0 to compiler defines. ![image](https://user-images.githubusercontent.com/3365866/150137064-f6232133-77db-4db1-a10b-4680effd6966.png) This prevents me from linking many external static libs with such error. ![image](https://user-images.githubusercontent.com/3365866/150137663-78788a87-be52-4574-8776-a42519d3a318.png) Is this macro really needed? This is really hard...

https://github.com/sideeffects/HoudiniEngineForUnreal/blob/24a7e9ee059800826b1dcec41b369494f231db72/Source/HoudiniEngine/Private/HoudiniPDGManager.cpp#L1649-L1660 `WorkItemID` should be stored as a local variable before line 1656, since reading a value of referenced structure that has already been destructed (line 1657) can be dangerous. When...