-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43de062
commit 1644bac
Showing
6 changed files
with
44 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,41 @@ | ||
# sort-jsonc-cli | ||
|
||
## 1.0.2 | ||
|
||
### Patch Changes | ||
|
||
- Remove references to JSON5. _[`43de062`](https://github.com/duniul/sort-jsonc/commit/43de0620fbd4e7ecebdf1ded121669333615c9c4) | ||
[@duniul](https://github.com/duniul)_ | ||
|
||
<details><summary>Updated 1 dependency</summary> | ||
|
||
<small> | ||
|
||
[`2d3f8d7`](https://github.com/duniul/sort-jsonc/commit/2d3f8d745c9e42082a20b50c06b9de6fbf6b14e5) | ||
[`43de062`](https://github.com/duniul/sort-jsonc/commit/43de0620fbd4e7ecebdf1ded121669333615c9c4) | ||
|
||
</small> | ||
|
||
- `[email protected]` | ||
|
||
</details> | ||
|
||
## 1.0.1 | ||
|
||
### Patch Changes | ||
|
||
- Allow `spaces` option to be `string`, like JSON.stringify does. _[`70fac26`](https://github.com/duniul/sort-jsonc/commit/70fac2641f2cb0e95289757813e222c774d7221a) [@tylerbutler](https://github.com/tylerbutler)_ | ||
- Fix issue with `null` values breaking sort. _[`#4`](https://github.com/duniul/sort-jsonc/pull/4) [`20acd63`](https://github.com/duniul/sort-jsonc/commit/20acd6306755608dcb288a14786678594bba401f) [@duniul](https://github.com/duniul)_ | ||
- Allow `spaces` option to be `string`, like JSON.stringify does. | ||
_[`70fac26`](https://github.com/duniul/sort-jsonc/commit/70fac2641f2cb0e95289757813e222c774d7221a) | ||
[@tylerbutler](https://github.com/tylerbutler)_ | ||
- Fix issue with `null` values breaking sort. _[`#4`](https://github.com/duniul/sort-jsonc/pull/4) | ||
[`20acd63`](https://github.com/duniul/sort-jsonc/commit/20acd6306755608dcb288a14786678594bba401f) [@duniul](https://github.com/duniul)_ | ||
|
||
<details><summary>Updated 1 dependency</summary> | ||
|
||
<small> | ||
|
||
[`a5a09de`](https://github.com/duniul/sort-jsonc/commit/a5a09deb91fd0b0b86a1b5a786db9eca3b64e3ee) [`20acd63`](https://github.com/duniul/sort-jsonc/commit/20acd6306755608dcb288a14786678594bba401f) | ||
[`a5a09de`](https://github.com/duniul/sort-jsonc/commit/a5a09deb91fd0b0b86a1b5a786db9eca3b64e3ee) | ||
[`20acd63`](https://github.com/duniul/sort-jsonc/commit/20acd6306755608dcb288a14786678594bba401f) | ||
|
||
</small> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sort-jsonc-cli", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "CLI for sorting JSONC without mangling comments!", | ||
"author": "Daniel Grefberg <[email protected]>", | ||
"homepage": "https://github.com/duniul/sort-jsonc/issues", | ||
|
@@ -42,7 +42,7 @@ | |
"dependencies": { | ||
"clipanion": "^3.2.0", | ||
"comment-json": "^4.2.3", | ||
"sort-jsonc": "^1.0.1" | ||
"sort-jsonc": "^1.0.2" | ||
}, | ||
"devDependencies": { | ||
"@tsconfig/node14": "^14.1.2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sort-jsonc", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Sort JSONC without mangling comments!", | ||
"author": "Daniel Grefberg <[email protected]>", | ||
"homepage": "https://github.com/duniul/sort-jsonc/issues", | ||
|