Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions llm-docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

Changes in this section are not yet released. If you need access to these changes before we cut a release, check out our `@main` NPM releases. Each commit on the main branch is [published to NPM](https://www.npmjs.com/package/grats?activeTab=versions) under the `main` tag.

## 0.0.36

- **Breaking Changes**
- Grats is now published as an ES module. If you were importing Grats using `require()`, you will need to switch to `import` or use a dynamic `import()`.
- **Features**
- The Grats npm package now includes an `llm-docs/` directory containing agent-friendly Markdown documentation. AI coding agents can use these docs to understand Grats' API and conventions without needing to access the website.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grats",
"version": "0.0.35",
"version": "0.0.36",
"type": "module",
"main": "dist/src/index.js",
"bin": "dist/src/cli.js",
Expand Down
4 changes: 4 additions & 0 deletions website/docs/07-changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

Changes in this section are not yet released. If you need access to these changes before we cut a release, check out our `@main` NPM releases. Each commit on the main branch is [published to NPM](https://www.npmjs.com/package/grats?activeTab=versions) under the `main` tag.

## 0.0.36

- **Breaking Changes**
- Grats is now published as an ES module. If you were importing Grats using `require()`, you will need to switch to `import` or use a dynamic `import()`.
- **Features**
- The Grats npm package now includes an `llm-docs/` directory containing agent-friendly Markdown documentation. AI coding agents can use these docs to understand Grats' API and conventions without needing to access the website.

Expand Down
Loading