Skip to content

Commit 07c8b3a

Browse files
Version Packages (#134)
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>
1 parent ef7f336 commit 07c8b3a

13 files changed

+129
-166
lines changed

.changeset/few-ducks-explain.md

-5
This file was deleted.

.changeset/rich-tables-hug.md

-5
This file was deleted.

.changeset/sharp-glasses-give.md

-5
This file was deleted.

.changeset/sixty-pillows-work.md

-5
This file was deleted.

.changeset/tender-rocks-smell.md

-5
This file was deleted.

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# codemirror-json-schema
22

3+
## 0.7.9
4+
5+
### Patch Changes
6+
7+
- [#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
8+
9+
- [#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
10+
11+
- [#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
12+
13+
- [#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
14+
15+
- [#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
16+
317
## 0.7.8
418

519
### Patch Changes

docs/README.md

+24-24
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ Full featured cm6 extension for json, including `@codemirror/lang-json`
7474

7575
#### Defined in
7676

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

7979
## Codemirror Extensions
8080

8181
### jsonCompletion
8282

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

8585
provides a JSON schema enabled autocomplete extension for codemirror
8686

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

9595
`fn`
9696

97-
▸ (`ctx`): `CompletionResult` \| `never`[]
97+
▸ (`ctx`): `never`[] \| `CompletionResult`
9898

9999
##### Parameters
100100

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

105105
##### Returns
106106

107-
`CompletionResult` \| `never`[]
107+
`never`[] \| `CompletionResult`
108108

109109
#### Defined in
110110

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

113113
___
114114

@@ -144,7 +144,7 @@ provides a JSON schema enabled tooltip extension for codemirror
144144

145145
#### Defined in
146146

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

149149
___
150150

@@ -178,7 +178,7 @@ Helper for simpler class instantiaton
178178

179179
#### Defined in
180180

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

183183
## Utilities
184184

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

202202
#### Defined in
203203

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

206206
___
207207

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

227227
#### Defined in
228228

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

231231
___
232232

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

254254
#### Defined in
255255

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

258258
___
259259

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

281281
#### Defined in
282282

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

285285
## Functions
286286

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

301301
#### Defined in
302302

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

305305
___
306306

@@ -322,7 +322,7 @@ ___
322322

323323
#### Defined in
324324

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

327327
___
328328

@@ -342,7 +342,7 @@ ___
342342

343343
#### Defined in
344344

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

347347
___
348348

@@ -363,7 +363,7 @@ ___
363363

364364
#### Defined in
365365

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

368368
___
369369

@@ -383,7 +383,7 @@ ___
383383

384384
#### Defined in
385385

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

388388
___
389389

@@ -404,7 +404,7 @@ ___
404404

405405
#### Defined in
406406

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

409409
## Type Aliases
410410

@@ -421,7 +421,7 @@ ___
421421

422422
#### Defined in
423423

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

426426
___
427427

@@ -431,7 +431,7 @@ ___
431431

432432
#### Defined in
433433

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

436436
___
437437

@@ -450,7 +450,7 @@ ___
450450

451451
#### Defined in
452452

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

455455
___
456456

@@ -467,7 +467,7 @@ ___
467467

468468
#### Defined in
469469

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

472472
___
473473

@@ -486,7 +486,7 @@ ___
486486

487487
#### Defined in
488488

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

491491
___
492492

@@ -496,7 +496,7 @@ ___
496496

497497
#### Defined in
498498

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

501501
## Variables
502502

@@ -506,4 +506,4 @@ ___
506506

507507
#### Defined in
508508

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

0 commit comments

Comments
 (0)