jest-serializer-simple 5.0.0-rc.4 → 5.0.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/LICENSE.md +20 -0
- package/README.md +2 -3
- package/package.json +1 -13
- package/CHANGELOG.md +0 -130
package/LICENSE.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2026 Benjie Gillam
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the “Software”), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# jest-serializer-simple
|
|
2
2
|
|
|
3
3
|
[](https://github.com/sponsors/benjie)
|
|
4
|
-
[](https://patreon.com/benjie)
|
|
5
4
|
[](http://discord.gg/graphile)
|
|
6
|
-
[](https://bsky.app/profile/graphile.org)
|
|
6
|
+
[](https://fosstodon.org/@graphile)
|
|
7
7
|
|
|
8
8
|
A Jest serializer to simplify your snapshots.
|
|
9
9
|
|
|
@@ -24,7 +24,6 @@ via sponsorship.
|
|
|
24
24
|
And please give some love to our featured sponsors 🤩:
|
|
25
25
|
|
|
26
26
|
<table><tr>
|
|
27
|
-
<td align="center"><a href="https://www.the-guild.dev/"><img src="https://graphile.org/images/sponsors/theguild.png" width="90" height="90" alt="The Guild" /><br />The Guild</a> *</td>
|
|
28
27
|
<td align="center"><a href="https://gosteelhead.com/"><img src="https://graphile.org/images/sponsors/steelhead.svg" width="90" height="90" alt="Steelhead" /><br />Steelhead</a> *</td>
|
|
29
28
|
</tr></table>
|
|
30
29
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-serializer-simple",
|
|
3
|
-
"version": "5.0.0
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Jest serializer that gives really simple formatting",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"prepack": "tsc -b",
|
|
9
|
-
"watch": "tsc -b --watch"
|
|
10
|
-
},
|
|
11
7
|
"repository": {
|
|
12
8
|
"type": "git",
|
|
13
9
|
"url": "git+https://github.com/graphile/crystal.git"
|
|
@@ -30,14 +26,6 @@
|
|
|
30
26
|
"json5": "^2.2.3",
|
|
31
27
|
"tslib": "^2.8.1"
|
|
32
28
|
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@types/jest": "^30.0.0",
|
|
35
|
-
"@types/node": "^22.19.1",
|
|
36
|
-
"jest": "^30.2.0",
|
|
37
|
-
"pretty-format": "^30.2.0",
|
|
38
|
-
"ts-node": "^10.9.2",
|
|
39
|
-
"typescript": "^5.9.3"
|
|
40
|
-
},
|
|
41
29
|
"files": [
|
|
42
30
|
"dist"
|
|
43
31
|
]
|
package/CHANGELOG.md
DELETED
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
# jest-serializer-simple
|
|
2
|
-
|
|
3
|
-
## 5.0.0-rc.4
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [`a3722d6`](https://github.com/graphile/crystal/commit/a3722d613bc6fb9e32f167aae9a31eaa422ceef1)
|
|
8
|
-
Thanks [@benjie](https://github.com/benjie)! - Refactor to enable TypeScript
|
|
9
|
-
options rewriteRelativeImportExtensions and erasableSyntaxOnly (including
|
|
10
|
-
using .ts extensions in source code)
|
|
11
|
-
|
|
12
|
-
## 5.0.0-rc.3
|
|
13
|
-
|
|
14
|
-
### Patch Changes
|
|
15
|
-
|
|
16
|
-
- [#2873](https://github.com/graphile/crystal/pull/2873)
|
|
17
|
-
[`0772086`](https://github.com/graphile/crystal/commit/0772086411a55d56b4e345cff1eef133eee31b36)
|
|
18
|
-
Thanks [@benjie](https://github.com/benjie)! - Update TypeScript configuration
|
|
19
|
-
to support Node 22 minimum
|
|
20
|
-
|
|
21
|
-
## 5.0.0-rc.2
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- [#2829](https://github.com/graphile/crystal/pull/2829)
|
|
26
|
-
[`a82e6fa`](https://github.com/graphile/crystal/commit/a82e6fae099f7e9d62fb3fc1ee173368cdabca27)
|
|
27
|
-
Thanks [@benjie](https://github.com/benjie)! - Update dependency ranges.
|
|
28
|
-
|
|
29
|
-
## 5.0.0-rc.1
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- [`8a5a7c5`](https://github.com/graphile/crystal/commit/8a5a7c536fc4b9b702600c5cc3d413724670c327)
|
|
34
|
-
Thanks [@benjie](https://github.com/benjie)! - Bump to release candidate
|
|
35
|
-
|
|
36
|
-
## 5.0.0-beta.6
|
|
37
|
-
|
|
38
|
-
### Patch Changes
|
|
39
|
-
|
|
40
|
-
- [#2625](https://github.com/graphile/crystal/pull/2625)
|
|
41
|
-
[`00f5b56`](https://github.com/graphile/crystal/commit/00f5b5653ded051af91bf3492389e4acaf511263)
|
|
42
|
-
Thanks [@benjie](https://github.com/benjie)! - Removes unnecessary dependency
|
|
43
|
-
on prettier.
|
|
44
|
-
|
|
45
|
-
## 5.0.0-beta.5
|
|
46
|
-
|
|
47
|
-
### Patch Changes
|
|
48
|
-
|
|
49
|
-
- [#2577](https://github.com/graphile/crystal/pull/2577)
|
|
50
|
-
[`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47)
|
|
51
|
-
Thanks [@benjie](https://github.com/benjie)! - Update dependencies
|
|
52
|
-
|
|
53
|
-
## 5.0.0-beta.4
|
|
54
|
-
|
|
55
|
-
### Patch Changes
|
|
56
|
-
|
|
57
|
-
- [#2482](https://github.com/graphile/crystal/pull/2482)
|
|
58
|
-
[`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37)
|
|
59
|
-
Thanks [@benjie](https://github.com/benjie)! - Minimum version of Node.js
|
|
60
|
-
bumped to Node 22 (the latest LTS).
|
|
61
|
-
|
|
62
|
-
## 5.0.0-beta.3
|
|
63
|
-
|
|
64
|
-
### Patch Changes
|
|
65
|
-
|
|
66
|
-
- [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
|
|
67
|
-
[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
|
|
68
|
-
Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
|
|
69
|
-
information
|
|
70
|
-
|
|
71
|
-
## 5.0.0-beta.2
|
|
72
|
-
|
|
73
|
-
### Patch Changes
|
|
74
|
-
|
|
75
|
-
- [#496](https://github.com/benjie/crystal/pull/496)
|
|
76
|
-
[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
|
|
77
|
-
Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
|
|
78
|
-
through major versions).
|
|
79
|
-
|
|
80
|
-
## 5.0.0-beta.1
|
|
81
|
-
|
|
82
|
-
### Patch Changes
|
|
83
|
-
|
|
84
|
-
- [`cbd987385`](https://github.com/benjie/crystal/commit/cbd987385f99bd1248bc093ac507cc2f641ba3e8)
|
|
85
|
-
Thanks [@benjie](https://github.com/benjie)! - Bump all packages to beta
|
|
86
|
-
|
|
87
|
-
## 5.0.0-alpha.3
|
|
88
|
-
|
|
89
|
-
### Patch Changes
|
|
90
|
-
|
|
91
|
-
- [`f34bd5a3c`](https://github.com/benjie/crystal/commit/f34bd5a3c353693b86a0307357a3620110700e1c)
|
|
92
|
-
Thanks [@benjie](https://github.com/benjie)! - Address dependency issues.
|
|
93
|
-
|
|
94
|
-
## 5.0.0-alpha.2
|
|
95
|
-
|
|
96
|
-
### Patch Changes
|
|
97
|
-
|
|
98
|
-
- [`7f857950a`](https://github.com/benjie/crystal/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71)
|
|
99
|
-
Thanks [@benjie](https://github.com/benjie)! - Upgrade to the latest
|
|
100
|
-
TypeScript/tslib
|
|
101
|
-
|
|
102
|
-
## 5.0.0-alpha.1
|
|
103
|
-
|
|
104
|
-
### Patch Changes
|
|
105
|
-
|
|
106
|
-
- [`759ad403d`](https://github.com/benjie/crystal/commit/759ad403d71363312c5225c165873ae84b8a098c)
|
|
107
|
-
Thanks [@benjie](https://github.com/benjie)! - Alpha release - see
|
|
108
|
-
https://postgraphile.org/news/2023-04-26-version-5-alpha
|
|
109
|
-
|
|
110
|
-
## 5.0.0-1.1
|
|
111
|
-
|
|
112
|
-
### Patch Changes
|
|
113
|
-
|
|
114
|
-
- [#260](https://github.com/benjie/crystal/pull/260)
|
|
115
|
-
[`d5312e6b9`](https://github.com/benjie/crystal/commit/d5312e6b968fbeb46d074b82a41b4bdbc166598c)
|
|
116
|
-
Thanks [@benjie](https://github.com/benjie)! - TypeScript v5 is now required
|
|
117
|
-
|
|
118
|
-
## 5.0.0-0.2
|
|
119
|
-
|
|
120
|
-
### Patch Changes
|
|
121
|
-
|
|
122
|
-
- [`0ab95d0b1`](undefined) - Update sponsors.
|
|
123
|
-
|
|
124
|
-
## 5.0.0-0.1
|
|
125
|
-
|
|
126
|
-
### Patch Changes
|
|
127
|
-
|
|
128
|
-
- [#125](https://github.com/benjie/crystal/pull/125)
|
|
129
|
-
[`91f2256b3`](https://github.com/benjie/crystal/commit/91f2256b3fd699bec19fc86f1ca79df057e58639)
|
|
130
|
-
Thanks [@benjie](https://github.com/benjie)! - Initial changesets release
|