jjpwrgem 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
- package/readme.md +20 -27
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.0) - 2025-12-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- axolotl logo in version screen
|
|
15
|
+
- consistent key ordering
|
|
16
|
+
|
|
17
|
+
### Deprecated
|
|
18
|
+
|
|
19
|
+
- removed help subcommand
|
|
20
|
+
|
|
21
|
+
### Documentation
|
|
22
|
+
|
|
23
|
+
- autogenerate examples and add examples to subcommands
|
|
24
|
+
- update readme with correct command
|
|
25
|
+
- add xtask to generate readmes
|
|
26
|
+
|
|
27
|
+
### Performance
|
|
28
|
+
|
|
29
|
+
- TokenStream iterator instead of collecting into intermediary Vec
|
|
30
|
+
|
|
31
|
+
|
|
10
32
|
## [0.2.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.2) - 2025-12-07
|
|
11
33
|
|
|
12
34
|
### Documentation
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "jjpwrgem",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.3.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -896,5 +896,5 @@
|
|
|
896
896
|
}
|
|
897
897
|
},
|
|
898
898
|
"requires": true,
|
|
899
|
-
"version": "0.
|
|
899
|
+
"version": "0.3.0"
|
|
900
900
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.3.0",
|
|
3
3
|
"author": "Jacob Asper <jacobasper191@gmail.com>",
|
|
4
4
|
"bin": {
|
|
5
5
|
"jjp": "run-jjp.js"
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"zipExt": ".tar.xz"
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"version": "0.
|
|
96
|
+
"version": "0.3.0",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|
package/readme.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<!-- GENERATED FILE - update the templates in the xtask -->
|
|
2
|
+
|
|
1
3
|
# JJPWRGEM
|
|
2
4
|
|
|
3
5
|
JJPWRGEM JSON Parser With Really Good Error Messages
|
|
@@ -7,38 +9,29 @@ An RFC 8259 compliant JSON Parser and formatter!
|
|
|
7
9
|

|
|
8
10
|
|
|
9
11
|
```
|
|
10
|
-
echo -en
|
|
12
|
+
$ echo -en "{\"coolKey\"}" | jjp check
|
|
11
13
|
error: expected colon after key, found `}`
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
1
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
--> stdin:1:11
|
|
15
|
+
|
|
|
16
|
+
1 | {"coolKey"}
|
|
17
|
+
| ---------^
|
|
18
|
+
| |
|
|
19
|
+
| expected due to `"coolKey"`
|
|
20
|
+
|
|
|
19
21
|
help: insert colon and placeholder value
|
|
20
|
-
|
|
21
|
-
1
|
|
22
|
-
|
|
22
|
+
|
|
|
23
|
+
1 | {"coolKey": "🐟🛹"}
|
|
24
|
+
| ++++++++
|
|
25
|
+
|
|
23
26
|
```
|
|
24
27
|
|
|
25
28
|
## Table of contents
|
|
26
29
|
|
|
27
|
-
- [
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
- [Stability](#stability)
|
|
33
|
-
- [Indeterminate Handling](#indeterminate-handling)
|
|
34
|
-
- [FAQ](#faq)
|
|
35
|
-
- [What does JJPWRGEM stand for?](#what-does-jjpwrgem-stand-for)
|
|
36
|
-
- [How do you pronounce JJPWRGEM?](#how-do-you-pronounce-jjpwrgem)
|
|
37
|
-
- [But why is it called that?](#but-why-is-it-called-that)
|
|
38
|
-
- [Why is the logo an axolotl riding a skateboard?](#why-is-the-logo-an-axolotl-riding-a-skateboard)
|
|
39
|
-
- [Is it blazingly fast™?](#is-it-blazingly-fast)
|
|
40
|
-
- [How long is an axolotl?](#how-long-is-an-axolotl)
|
|
41
|
-
- [Motivations](#motivations)
|
|
30
|
+
- [Table of contents](#table-of-contents)
|
|
31
|
+
- [Installation](#installation)
|
|
32
|
+
- [Stability](#stability)
|
|
33
|
+
- [FAQ](#faq)
|
|
34
|
+
- [Motivations](#motivations)
|
|
42
35
|
|
|
43
36
|
## Installation
|
|
44
37
|
|
|
@@ -56,7 +49,7 @@ See [releases](https://github.com/20jasper/JJPWRGEM/releases) for shell and powe
|
|
|
56
49
|
|
|
57
50
|
### From source
|
|
58
51
|
|
|
59
|
-
```
|
|
52
|
+
```bash
|
|
60
53
|
cargo install --path .
|
|
61
54
|
```
|
|
62
55
|
|