psychobolt

Results 81 comments of psychobolt

@paulodeon I published v1.0.1, let me know if this resolves your issue.

@paulodeon Yes, a redraw (unmount/remount) would pretty much reconstruct the Paper instance and you'll get an expected result. However, ideally, it is computationally efficient to do resizing based on props...

> As an aside I had to pull the package locally and add it to my package.json as a local file. > > The test above ran ok but I...

I've mentioned in my comment [here](https://github.com/swc-project/swc-node/pull/754#issuecomment-1936306422), to fix the issue the protocol can be removed using `fileUrlToPath`

Currently, react-reconciler framework is meant to support only 1 context per renderer otherwise you may have unexpected behavior when you need access to the PaperScope. Fortunately the paper renderer holds...

At the moment, it seems you would need load ```react-paperjs``` in isolation (code-split if possible) for each iFrame. Which is the reason why I didn't prefer that approach, hence you...

No workaround for this plugin, but you can chain a npm script that runs `tsc` after `vite` e.g. ```json "dev": "yarn build-src -w & yarn build-dts --watch", "build": "yarn build-src...

I have `FORCE: true` set, this will avoid using build cache as well, however I think the main issue for me is manually running `npx vercel build` with the deploy...

Works now on c16abc29c95fcf9174b58eb7e1abf4c866893bc8 ```yaml - use: codecov/codecov-action@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # 4.1.1 # ... ```

Working example for `ts-node` (and additional loaders) using `file://` protocol: ```sh yarn -v 3.5.0 yarn add -DE ts-node # any loaders must be unplugged or you'll get ERR_MODULE_NOT_FOUND yarn unplug...