changwei

Results 26 comments of changwei

@Bobgy it works. But I think this is a bug of Android webview, maybe there is a bug report of that project?

@MrMadClown You can try modify libpng like this: https://sourceforge.net/u/zhangciwu/libpng/ci/0589c3bee961d9a147a8872b97b0ebea4a2e9afd/

Build command can not cover the code that is not used in any app yet, so a typescript checker is necessary

https://github.com/typescript-eslint/typescript-eslint/issues/352 And eslint can not cover this case, FYI

Currently I use `tsc -b` (in every app/lib dir) for resolution style tsconfig which is by default in nx@10 It does not support `noEmit`, so need to indicate a path...

@KeKs0r I wrote a script to walk all the dir of apps/libs, and run `tsc -b` in `cwd` set to that path if there is tsconfig there It's kind of...

@AliYusuf95 I put all the lib path config in root tsconfig, and using `paths` instead of `references` ```json "paths": { "@myproject/testlib": ["libs/testlib/src/index.ts"], } ``` Also I have blank `include` in...

https://github.com/growthbook/growthbook/blob/8be2f5ca8c5d7ea7e20f3aa9346b778f4e2771ad/packages/sdk-js/src/GrowthBook.ts#L85-L88 `this.render();` seems not taking effect before putting `growthBookInstance` into `GrowthBookProvider`, so I think I can just use `growthBookInstance.setForcedFeatures()`

Added one unit test, for data check. (Fix a bug during this, UT is so important) But multi input with same name now will only preserve the last one's value...