@dataplan/json 0.0.1-alpha.1 → 0.0.1-alpha.3
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 +24 -0
- package/README.md +3 -3
- package/dist/steps/jsonParse.js +3 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @dataplan/json
|
|
2
2
|
|
|
3
|
+
## 0.0.1-alpha.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7f857950a`](https://github.com/benjie/postgraphile-private/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71)
|
|
8
|
+
Thanks [@benjie](https://github.com/benjie)! - Upgrade to the latest
|
|
9
|
+
TypeScript/tslib
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
[[`2389f47ec`](https://github.com/benjie/postgraphile-private/commit/2389f47ecf3b708f1085fdeb818eacaaeb257a2d),
|
|
13
|
+
[`e91ee201d`](https://github.com/benjie/postgraphile-private/commit/e91ee201d80d3b32e4e632b101f4c25362a1a05b),
|
|
14
|
+
[`865bec590`](https://github.com/benjie/postgraphile-private/commit/865bec5901f666e147f5d4088152d1f0d2584827),
|
|
15
|
+
[`7f857950a`](https://github.com/benjie/postgraphile-private/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71),
|
|
16
|
+
[`d39a5d409`](https://github.com/benjie/postgraphile-private/commit/d39a5d409ffe1a5855740ecbff1ad11ec0bf6660)]:
|
|
17
|
+
- grafast@0.0.1-alpha.3
|
|
18
|
+
|
|
19
|
+
## 0.0.1-alpha.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
[[`3df3f1726`](https://github.com/benjie/postgraphile-private/commit/3df3f17269bb896cdee90ed8c4ab46fb821a1509)]:
|
|
25
|
+
- grafast@0.0.1-alpha.2
|
|
26
|
+
|
|
3
27
|
## 0.0.1-alpha.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -23,12 +23,12 @@ And please give some love to our featured sponsors 🤩:
|
|
|
23
23
|
|
|
24
24
|
<table><tr>
|
|
25
25
|
<td align="center"><a href="https://surge.io/"><img src="https://graphile.org/images/sponsors/surge.png" width="90" height="90" alt="Surge" /><br />Surge</a> *</td>
|
|
26
|
-
<td align="center"><a href="https://www.netflix.com/"><img src="https://graphile.org/images/sponsors/Netflix.png" width="90" height="90" alt="Netflix" /><br />Netflix</a> *</td>
|
|
27
26
|
<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>
|
|
27
|
+
<td align="center"><a href="https://dovetailapp.com/"><img src="https://graphile.org/images/sponsors/dovetail.png" width="90" height="90" alt="Dovetail" /><br />Dovetail</a> *</td>
|
|
28
28
|
<td align="center"><a href="https://qwick.com/"><img src="https://graphile.org/images/sponsors/qwick.png" width="90" height="90" alt="Qwick" /><br />Qwick</a> *</td>
|
|
29
29
|
</tr><tr>
|
|
30
|
-
<td align="center"><a href="
|
|
31
|
-
<td align="center"><a href="
|
|
30
|
+
<td align="center"><a href="https://www.netflix.com/"><img src="https://graphile.org/images/sponsors/Netflix.png" width="90" height="90" alt="Netflix" /><br />Netflix</a> *</td>
|
|
31
|
+
<td align="center"><a href=""><img src="https://graphile.org/images/sponsors/chadf.png" width="90" height="90" alt="Chad Furman" /><br />Chad Furman</a> *</td>
|
|
32
32
|
<td align="center"><a href="https://www.enzuzo.com/"><img src="https://graphile.org/images/sponsors/enzuzo.png" width="90" height="90" alt="Enzuzo" /><br />Enzuzo</a> *</td>
|
|
33
33
|
<td align="center"><a href="https://stellate.co/"><img src="https://graphile.org/images/sponsors/Stellate.png" width="90" height="90" alt="Stellate" /><br />Stellate</a> *</td>
|
|
34
34
|
</tr></table>
|
package/dist/steps/jsonParse.js
CHANGED
|
@@ -5,13 +5,13 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
6
6
|
const grafast_1 = require("grafast");
|
|
7
7
|
class JSONParseStep extends grafast_1.ExecutableStep {
|
|
8
|
-
static
|
|
8
|
+
static { this.$$export = {
|
|
9
9
|
moduleName: "@dataplan/json",
|
|
10
10
|
exportName: "JSONParseStep",
|
|
11
|
-
};
|
|
12
|
-
isSyncAndSafe = false;
|
|
11
|
+
}; }
|
|
13
12
|
constructor($stringPlan) {
|
|
14
13
|
super();
|
|
14
|
+
this.isSyncAndSafe = false;
|
|
15
15
|
this.addDependency($stringPlan);
|
|
16
16
|
}
|
|
17
17
|
toStringMeta() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dataplan/json",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.3",
|
|
4
4
|
"description": "JSON step classes for Grafast",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
"homepage": "https://github.com/graphile/heart/tree/main/grafast/dataplan-json",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"chalk": "^4.1.2",
|
|
30
|
-
"tslib": "^2.
|
|
30
|
+
"tslib": "^2.5.0"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=14.17"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"grafast": "^0.0.1-alpha.
|
|
36
|
+
"grafast": "^0.0.1-alpha.3",
|
|
37
37
|
"graphql": "^16.1.0-experimental-stream-defer.6"
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/jest": "^27.5.1",
|
|
44
44
|
"jest": "^28.1.3",
|
|
45
|
-
"jest-serializer-simple": "^5.0.0-alpha.
|
|
46
|
-
"typescript": "^5.0.
|
|
45
|
+
"jest-serializer-simple": "^5.0.0-alpha.2",
|
|
46
|
+
"typescript": "^5.0.4"
|
|
47
47
|
}
|
|
48
48
|
}
|