Skip to content

Commit

Permalink
Merge branch 'main' of github.com:jpwallace22/use-react-workers
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwallace22 committed Mar 17, 2024
2 parents f5744c1 + 99798fd commit 6bcc08d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/content/config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { defineCollection } from 'astro:content';
import { docsSchema, i18nSchema } from '@astrojs/starlight/schema';

export const collections = {
export const collections: {
docs: ReturnType<typeof defineCollection>;
i18n: ReturnType<typeof defineCollection>;
} = {
docs: defineCollection({ schema: docsSchema() }),
i18n: defineCollection({ type: 'data', schema: i18nSchema() }),
};
13 changes: 13 additions & 0 deletions use-react-workers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# [1.1.0](https://github.com/jpwallace22/use-react-workers/compare/v1.0.0...v1.1.0) (2024-03-17)


### Bug Fixes

* docs missing from README ([#19](https://github.com/jpwallace22/use-react-workers/issues/19)) ([8f67de8](https://github.com/jpwallace22/use-react-workers/commit/8f67de853210fc3ebd4865fe383ed6171360aa6c))
* remove examples ([d4fee47](https://github.com/jpwallace22/use-react-workers/commit/d4fee47a21a920dc0572801beefb1890a8540134))


### Features

* force CI release ([b6b16ea](https://github.com/jpwallace22/use-react-workers/commit/b6b16ea43248bf61bc6b26d13d25da506b48e90f))

# [1.1.0](https://github.com/jpwallace22/use-react-workers/compare/v1.0.0...v1.1.0) (2024-03-17)


### Bug Fixes

* docs missing from README ([#19](https://github.com/jpwallace22/use-react-workers/issues/19)) ([8f67de8](https://github.com/jpwallace22/use-react-workers/commit/8f67de853210fc3ebd4865fe383ed6171360aa6c))
Expand Down

0 comments on commit 6bcc08d

Please sign in to comment.