Skip to content

Releases: souporserious/renoun

create-mdxts@0.3.3

26 Feb 09:30
0d40a6d
Compare
Choose a tag to compare

Patch Changes

  • 2bfcb8c: Add better CLI create source template that also renders a collection page to display all source item links.
  • 882ea4f: Cancel version check fetch request if it takes longer than a second.
  • c17cd1e: Display a link to the collection page upon successful create source onboarding in CLI.

mdxts@0.7.0

24 Feb 00:40
61ba050
Compare
Choose a tag to compare

Minor Changes

  • 19d82bd: Move gitSource url codemod to the CLI and add support for other git providers.

Patch Changes

  • ba56adc: Add try/catch around CodeBlock createSourceFile as temporary fix when virtual files cannot be created.
  • 2b1628c: Fixes load order for MDX components to load before the @mdx-js/react package.`

create-mdxts@0.3.2

24 Feb 03:11
86f6232
Compare
Choose a tag to compare

Patch Changes

  • bd8a219: Use cached package version check to reduce chance of network timeouts.

create-mdxts@0.3.1

24 Feb 01:10
c0d47f6
Compare
Choose a tag to compare

Patch Changes

  • 190b10a: Fix bad codemod in generateStaticParams when creating data source through CLI.
  • 82392e2: Fix ESM in CJS error in CLI.
  • fa557c5: Only log warning when git remote origin cannot be found.

create-mdxts@0.3.0

24 Feb 00:40
61ba050
Compare
Choose a tag to compare

Minor Changes

  • 018010d: Add generateStaticParams when creating source through CLI.
  • 00a9c3c: Prompt yes/no before adding git source.
  • d32efc1: Throw error if @next/mdx is configured and ask to remove when onboarding CLI.
  • 19d82bd: Move gitSource url codemod to the CLI and add support for other git providers.

Patch Changes

  • dda11e3: Fix CLI bug with next.config.mjs being created even when js config previously exists.
  • 1e9cdfe: Add file pattern if none provided when onboarding createSource through the CLI.
  • e2812c3: Fix CLI codemod not creating a catch-all route.
  • 61266e6: Use better inferred basename from file pattern when onboarding through CLI.
  • 0f15473: If file pattern starts with a separator add a period for the relative path.
  • fd4d4a1: Add summary of created files when creating source through CLI.

mdxts@0.6.2

21 Feb 20:24
9a6a0ec
Compare
Choose a tag to compare

Patch Changes

  • 71f9cc2: Remove @typescript/ata since it isn't currently being used and causes package version issues with newer TypeScript versions.
  • 9a0ed54: Move prettier and shiki to peer dependencies.

mdxts@0.6.1

21 Feb 19:43
30efccf
Compare
Choose a tag to compare

Patch Changes

  • 577d4b7: Remove public files in mdxts/next for now. These are generated for syntax highlighting and type checking on the client for the unreleased Editor component.

mdxts@0.6.0

21 Feb 02:40
ddf20b1
Compare
Choose a tag to compare

Minor Changes

  • dfea828: Use stable generated filename based on Code value.
  • 47c8ee1: Replaces summary export from remark plugin with description which is now used to calculate data description field.
  • b2d9324: Account for standard @internal JSDoc tag instead of @private in getExportedSourceFiles.
  • d7ac97a: Pass processed entry declarations to determine implicit internal exports in getAllData.
  • e89116e: Reduces the number of times the shiki highlighter is initialized to prevent memory access out of bounds errors.
  • 4303ce5: Add support for examples directory.
  • 3fff302: Add default MDX components to next plugin for code and pre elements.
  • f66aaa2: Adds ExportedTypes component for gathering types from a file or source code.
  • 3a6fe9b: Add support for following index file exports when gathering exported types.
  • 8671ff8: Add global timer to QuickInfo for better hover interactions.
  • 66edade: Add support for ordered Code blocks using a numbered filename prefix.
  • 57d8a29: Rename MDX to MDXContent and mdxComponents to MDXComponents.
  • f66aaa2: Use smaller generated filename for CodeBlock. Using Buffer.from(props.value).toString('base64') was causing an ENAMETOOLONG error.
  • e5fe316: Fixes QuickInfo tooltip by keeping it in view and accounting for scroll offset.
  • 97c0861: Introduces preconfigured examples starting with a blog example.
  • 3109b2d: Remove PackageExports component, this information is accessible from the data returned in createSource.
  • b948305: Split up Code component into CodeBlock and CodeInline components.
  • cc3b831: Add style prop to PackageInstall.
  • 5c0c635: Account for @internal JSDoc tag in getExportedTypes.
  • 8c13479: Always split highlighter tokens by identifier.

Patch Changes

  • 1f3875d: Fix Symbol highlighted state when hovering QuickInfo.
  • 3dd1cf3: Fix QuickInfo paragraph color.
  • 0465092: Fix relative createSource paths by using absolute paths for imports and adding webpack file dependencies.
  • 204bba5: Use cross-platform file path separator in Code.
  • 1f45a78: Fix QuickInfo erroring when parsing documentation by handling links properly.
  • a272add: Fix CodeBlock filename label when complex filename. The regex was only accounting for strings that begin with numbers.
  • daf9550: Handle all exported declarations in getExportedTypes.
  • eac632c: Add text-wrap pretty to QuickInfo paragraphs.
  • f9d8e48: Compute Module type so quick info is cleaner.
  • 1fd91d3: Fix metadata erroring when front matter is available.

create-mdxts@0.2.2

21 Feb 20:24
9a6a0ec
Compare
Choose a tag to compare

Patch Changes

  • 40790ea: Add list of all dependencies installed by CLI.

create-mdxts@0.2.1

21 Feb 19:43
30efccf
Compare
Choose a tag to compare

Patch Changes

  • 75ce1e5: Add codemod for next-compose-plugins in CLI onboarding.