Michael Cousins
Michael Cousins
Hi all, these all look like various misconfiguration issues. I'm going to close this issue since links to various action run logs posted have expired so reproduction would be overly...
My mistake, upon further investigation, I think this is working correctly based on previous discussion in #55, so I'm going to close this PR. Let me know if you disagree...
I think the requested functionality is either already available, via the `package` argument (which is really more akin to a `working-directory` argument) or the proposed `package-spec` argument, as detailed in...
I believe the offending regex is here: https://github.com/tracespace/tracespace/blob/49c9a22addccc70c1d1a830a9225328a91942080/packages/gerber-parser/lib/_parse-drill.js#L21 I don't recall why the regex does not start with `^`, but it probably should, and I think that would fix the...
Testing with the new board shape plotter in `@tracespace/core@next`. With the (completely arbitrary) default settings, this board still does not render properly. Gaps: - gap of `0.03999999999999915` between `26.989,23.5` and...
gerber-parser package has been replaced with @tracespace/parser, which does not use streams
I've been messing around with Svelte 5 in our existing test suite, and have encountered the following issues so far. I didn't see any of these explicitly called out in...
Rudimentary support for Svelte 5 has been released on the `next` tag ``` npm install —-save-dev @testing-library/svelte@next ``` Since Svelte 5 itself is [not ready](https://svelte-5-preview.vercel.app/status), expect issues and breaking changes...
FYI for those following along: as of the latest `svelte` prerelease, our own Svelte 5 support will no longer work due to https://github.com/sveltejs/svelte/pull/10516, which removed the API we were using...
Experimental Svelte v5 support is available on the `next` dist tag ```shell npm install --save-dev @testing-library/svelte@next ``` In your test files: ```js import { render } from '@testing-library/svelte/svelte5' ``` @yanick...