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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @123ishatest/louter

## 0.5.1

### Patch Changes

- Add Zod as peer dependency

## 0.5.0

### Minor Changes
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@123ishatest/louter",
"private": false,
"version": "0.5.0",
"version": "0.5.1",
"publishConfig": {
"access": "public",
"provenance": true
Expand Down Expand Up @@ -51,11 +51,14 @@
"vite": "^7.0.5",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.6"
"vitest": "^4.0.6",
"zod": "^4.0.0"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"dependencies": {
"es-toolkit": "^1.46.1",
"yaml": "^2.8.2",
"zod": "^4.3.6"
"yaml": "^2.8.2"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type { LouterWarning } from '@louter/core/LouterWarning';
export { LouterWarningType } from '@louter/core/LouterWarningType';
export { type KindDefinitions, type Content, type ContentMapFromKinds, ContentSchema } from '@louter/core/types';
export { createContext } from '@louter/core/util';

export { ref } from '@louter/core/references';
/**
* Content
*/
Expand Down
Loading