Kit PANG
Kit PANG
> I agree it would be better. It seems, though, that the AppImage mode may go away in the future. You can not use it, by the undocumented option `--onefile-tempdir`...
Hi @Keavon, may I have a take on this issue? I assume the followings should be implemented: 1. When constructing an Artboard, cap smallest dimensions to 1x1. 2. When updating...
@Keavon Just want to confirm about the properties panel behaviors. 1. Should we deny (auto correct) input of `0` in width and height? 2. If auto correct, is `1` the...
@Keavon Thank you, that's very clear. Let me rework the PR!
@szmarczak May I ask if there is any update on this issue? My team has come across the same problem and could not catch the error with `try catch`. To...
> We should support `pnpm` as well, looks pretty faster than `yarn` and `npm`. Looks like some additional changes will be needed to support `pnpm`, will have to check @ad1992...
I believe this bug was introduced by #484, specifically [this line](https://github.com/floydspace/serverless-esbuild/pull/484/files#diff-a2a171449d862fe29692ce031981047d7ab755ae7f84c707aef80701b3ea0c80R153) in `src/index.ts`. ```ts if (this.functionEntries?.length > 0) { //
@xxxily 這次的問題是由 `hackAttachShadow()` 這個函數引起的,Cloudflare 似乎會檢查 `shadowRoot !== null`。 在啓用了 Cloudflare captcha 的頁面上不要強制改變 `mode` 就可以了,最簡單的偵測方式是 `window.turnstile`。 實測 4.2.7 版本修改後成功通過 上的 captcha。 ```js function hackAttachShadow () { if (window._hasHackAttachShadow_) return try {...
Here is a tiny patch (will also work with `serverless-esbuild` using esm format). ```patch diff --git a/node_modules/serverless/lib/plugins/aws/invoke-local/index.js b/node_modules/serverless/lib/plugins/aws/invoke-local/index.js index a306ec2..f39f3a6 100644 --- a/node_modules/serverless/lib/plugins/aws/invoke-local/index.js +++ b/node_modules/serverless/lib/plugins/aws/invoke-local/index.js @@ -848,6 +848,15 @@ class...
[This line](https://github.com/kriszyp/cbor-x/blob/98926d0fcb8d46537d5e58786dee8cb956c89daf/encode.js#L303) in `encode.js` seems to be responsible for the bug. ```js if (bundledStrings && strLength >= 4 && strLength < 0x400) { ``` Is `strLength >= 4` because of...