Effect-TS / docgen

An opinionated documentation generator for Effect projects
https://effect-ts.github.io/docgen
MIT License
34 stars 8 forks source link

Fix example type checking and execution on Windows #80

Closed ianbollinger closed 2 months ago

ianbollinger commented 2 months ago

Type

Description

The type checking and execution of examples on Windows was broken by the Node.js security patch for CVE-2024-27980. That update requires that the { shell: true } option be used when running a cmd or bat file via child_process.spawn on Windows, which this pull request implements.

changeset-bot[bot] commented 2 months ago

🦋 Changeset detected

Latest commit: 57e332879acfb5716c6fbc6a2e9de845405b2b63

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package | Name | Type | | -------------- | ----- | | @effect/docgen | Patch |

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

gcanti commented 2 months ago

Thanks @ianbollinger