Skip to content

Commit

Permalink
Version Packages (#134)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## [email protected]

### Patch Changes

- [#133](#133)
[`4fd7cc6`](4fd7cc6)
Thanks [@imolorhe](https://github.com/imolorhe)! - Get sub schema using
parsed data for additional context

- [#137](#137)
[`29e2da5`](29e2da5)
Thanks [@xdavidwu](https://github.com/xdavidwu)! - Fix description
markdown rendering in completion

- [#144](#144)
[`ef7f336`](ef7f336)
Thanks [@imolorhe](https://github.com/imolorhe)! - updated to use fine
grained shiki bundle

- [#139](#139)
[`bfbe613`](bfbe613)
Thanks [@NickTomlin](https://github.com/NickTomlin)! - Move non
essential packages to devDependencies

- [#140](#140)
[`bceace2`](bceace2)
Thanks [@NickTomlin](https://github.com/NickTomlin)! - Add
CONTRIBUTING.md file

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 16, 2024
1 parent ef7f336 commit 07c8b3a
Show file tree
Hide file tree
Showing 13 changed files with 129 additions and 166 deletions.
5 changes: 0 additions & 5 deletions .changeset/few-ducks-explain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-tables-hug.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sharp-glasses-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-pillows-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-rocks-smell.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# codemirror-json-schema

## 0.7.9

### Patch Changes

- [#133](https://github.com/jsonnext/codemirror-json-schema/pull/133) [`4fd7cc6`](https://github.com/jsonnext/codemirror-json-schema/commit/4fd7cc69084bdad3c8c93d9d0f0a936fa120cbae) Thanks [@imolorhe](https://github.com/imolorhe)! - Get sub schema using parsed data for additional context

- [#137](https://github.com/jsonnext/codemirror-json-schema/pull/137) [`29e2da5`](https://github.com/jsonnext/codemirror-json-schema/commit/29e2da5b5a16f8b076186e9623fe93ce6d086c30) Thanks [@xdavidwu](https://github.com/xdavidwu)! - Fix description markdown rendering in completion

- [#144](https://github.com/jsonnext/codemirror-json-schema/pull/144) [`ef7f336`](https://github.com/jsonnext/codemirror-json-schema/commit/ef7f336f0d79397b19a37e76228f8a9b25070c89) Thanks [@imolorhe](https://github.com/imolorhe)! - updated to use fine grained shiki bundle

- [#139](https://github.com/jsonnext/codemirror-json-schema/pull/139) [`bfbe613`](https://github.com/jsonnext/codemirror-json-schema/commit/bfbe613c81ba43e079e454b9c59a48a2f3887810) Thanks [@NickTomlin](https://github.com/NickTomlin)! - Move non essential packages to devDependencies

- [#140](https://github.com/jsonnext/codemirror-json-schema/pull/140) [`bceace2`](https://github.com/jsonnext/codemirror-json-schema/commit/bceace285c137a53f3773219ee008ad1d856c770) Thanks [@NickTomlin](https://github.com/NickTomlin)! - Add CONTRIBUTING.md file

## 0.7.8

### Patch Changes
Expand Down
48 changes: 24 additions & 24 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ Full featured cm6 extension for json, including `@codemirror/lang-json`

#### Defined in

[json/bundled.ts:15](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/json/bundled.ts#L15)
[json/bundled.ts:15](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/json/bundled.ts#L15)

## Codemirror Extensions

### jsonCompletion

**jsonCompletion**(`opts?`): (`ctx`: `CompletionContext`) => `CompletionResult` \| `never`[]
**jsonCompletion**(`opts?`): (`ctx`: `CompletionContext`) => `never`[] \| `CompletionResult`

provides a JSON schema enabled autocomplete extension for codemirror

Expand All @@ -94,7 +94,7 @@ provides a JSON schema enabled autocomplete extension for codemirror

`fn`

▸ (`ctx`): `CompletionResult` \| `never`[]
▸ (`ctx`): `never`[] \| `CompletionResult`

##### Parameters

Expand All @@ -104,11 +104,11 @@ provides a JSON schema enabled autocomplete extension for codemirror

##### Returns

`CompletionResult` \| `never`[]
`never`[] \| `CompletionResult`

#### Defined in

[features/completion.ts:949](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/completion.ts#L949)
[features/completion.ts:973](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/completion.ts#L973)

___

Expand Down Expand Up @@ -144,7 +144,7 @@ provides a JSON schema enabled tooltip extension for codemirror

#### Defined in

[features/hover.ts:46](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L46)
[features/hover.ts:46](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/hover.ts#L46)

___

Expand Down Expand Up @@ -178,7 +178,7 @@ Helper for simpler class instantiaton

#### Defined in

[features/validation.ts:58](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/validation.ts#L58)
[features/validation.ts:46](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/validation.ts#L46)

## Utilities

Expand All @@ -201,7 +201,7 @@ retrieve a Map of all the json pointers in a document

#### Defined in

[utils/json-pointers.ts:85](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L85)
[utils/json-pointers.ts:85](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/utils/json-pointers.ts#L85)

___

Expand All @@ -226,7 +226,7 @@ retrieve a JSON pointer for a given position in the editor

#### Defined in

[utils/json-pointers.ts:68](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L68)
[utils/json-pointers.ts:68](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/utils/json-pointers.ts#L68)

___

Expand All @@ -253,7 +253,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function using co

#### Defined in

[utils/parse-json-document.ts:24](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/parse-json-document.ts#L24)
[parsers/json-parser.ts:29](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/parsers/json-parser.ts#L29)

___

Expand All @@ -280,7 +280,7 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[utils/parse-json-document.ts:10](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/parse-json-document.ts#L10)
[parsers/json-parser.ts:11](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/parsers/json-parser.ts#L11)

## Functions

Expand All @@ -300,7 +300,7 @@ Return parsed data and json pointers for a given codemirror EditorState

#### Defined in

[features/state.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L25)
[features/state.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/state.ts#L25)

___

Expand All @@ -322,7 +322,7 @@ ___

#### Defined in

[utils/json-pointers.ts:31](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L31)
[utils/json-pointers.ts:31](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/utils/json-pointers.ts#L31)

___

Expand All @@ -342,7 +342,7 @@ ___

#### Defined in

[features/validation.ts:48](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/validation.ts#L48)
[features/validation.ts:36](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/validation.ts#L36)

___

Expand All @@ -363,7 +363,7 @@ ___

#### Defined in

[utils/json-pointers.ts:18](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/utils/json-pointers.ts#L18)
[utils/json-pointers.ts:18](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/utils/json-pointers.ts#L18)

___

Expand All @@ -383,7 +383,7 @@ ___

#### Defined in

[features/state.ts:29](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L29)
[features/state.ts:29](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/state.ts#L29)

___

Expand All @@ -404,7 +404,7 @@ ___

#### Defined in

[features/state.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L19)
[features/state.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/state.ts#L19)

## Type Aliases

Expand All @@ -421,7 +421,7 @@ ___

#### Defined in

[features/hover.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L19)
[features/hover.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/hover.ts#L19)

___

Expand All @@ -431,7 +431,7 @@ ___

#### Defined in

[features/hover.ts:21](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L21)
[features/hover.ts:21](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/hover.ts#L21)

___

Expand All @@ -450,7 +450,7 @@ ___

#### Defined in

[features/hover.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/hover.ts#L25)
[features/hover.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/hover.ts#L25)

___

Expand All @@ -467,7 +467,7 @@ ___

#### Defined in

[types.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/types.ts#L6)
[types.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/types.ts#L6)

___

Expand All @@ -486,7 +486,7 @@ ___

#### Defined in

[types.ts:11](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/types.ts#L11)
[types.ts:11](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/types.ts#L11)

___

Expand All @@ -496,7 +496,7 @@ ___

#### Defined in

[types.ts:20](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/types.ts#L20)
[types.ts:20](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/types.ts#L20)

## Variables

Expand All @@ -506,4 +506,4 @@ ___

#### Defined in

[features/state.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/2356a94/src/features/state.ts#L6)
[features/state.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/ef7f336/src/features/state.ts#L6)
Loading

0 comments on commit 07c8b3a

Please sign in to comment.