Releases: interledger/astro-graphql-plugin
Releases · interledger/astro-graphql-plugin
v0.4.2
- Move all dependencies to "dependencies" to support TypeScript exports. Since we are exporting TypeScript files instead of precompiled JavaScript, all dependencies must be listed under "dependencies" rather than "devDependencies." This ensures that consumer projects, which are responsible for compiling the TypeScript, have access to all required modules.
v0.4.1
- Fixes type erros in source files
v0.4.0
- Bumps dependencies to the latest version
- Now compatible with Astro version 5
- Astro Hook Update: The plugin now uses a different Astro hook because since the Astro upgrade to version 5 the previous
astro:build:start
hook runs after the Content Layer API is synced and caches some of its output. As a result, Markdown files generated by the plugin were not included in the production build until the site was built a second time. We are now using theastro:config:setup
hook which also has the advantage of files being generated when using the dev command and not only for production builds by @JoblersTune (695cbec)
v0.3.0
v0.2.0
- Bumps dependencies to the latest version
- Resolves issue with deprecated/updated interfaces from marked
- Replace marked's deprecated
Slugger
with github-slugger (see markedjs/marked#2983) - Update import statement (introduced in 4.0.0) to
import { marked } from "marked";
- Replace marked's deprecated