Acorn1010

Results 3 comments of Acorn1010

The continuous-integration/travis-ci/pr failure from the integration check isn't related to this PR--it's an issue with [email protected]'s dependency on graceful-fs. Here's a detailed explanation on StackOverflow with some workarounds: https://stackoverflow.com/questions/55921442/how-to-fix-referenceerror-primordials-is-not-defined-in-node.

This also seems to happen if the canvas size changes, resetting the custom dpr from `setDpr`. Here's how I got around it. This isn't perfect (the dpr will momentarily reset...

This example code seems to fix it, at least for my use case: ```typescript function getProjectDirPathInOutDir( outDir: string, projectDir: string ): string | undefined { const posixOutput = outDir.replace(/\\/g, '/');...