Skip to content

Commit 94517f9

Browse files
authored
Merge pull request #10 from tenex-engineering/develop
v0.9.0
2 parents c42ea7e + 1f07c8a commit 94517f9

File tree

5 files changed

+523
-568
lines changed

5 files changed

+523
-568
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# graphql-x
22

3+
## 0.8.2
4+
5+
### Patch Changes
6+
7+
- a4f6bf8: fix type mapping
8+
39
## 0.8.1
410

511
### Patch Changes

bin/graphql-x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env node
2+
// @ts-check
3+
24
import { cli } from '../dist/cli.js'
35

46
await cli()

package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@txe/graphql-x",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "GraphQL eXpansion",
55
"keywords": [
66
"graphql",
@@ -26,6 +26,7 @@
2626
],
2727
"main": "./dist/index.js",
2828
"module": "./dist/index.js",
29+
"types": "./dist/index.d.ts",
2930
"bin": {
3031
"graphql-x": "bin/graphql-x"
3132
},
@@ -48,31 +49,31 @@
4849
"watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --clearScreen=false"
4950
},
5051
"dependencies": {
51-
"@parcel/watcher": "^2.4.1",
52+
"@parcel/watcher": "^2.5.0",
5253
"debounce": "^2.2.0",
5354
"graphql": "^16.9.0"
5455
},
5556
"devDependencies": {
56-
"@arethetypeswrong/cli": "^0.16.4",
57+
"@arethetypeswrong/cli": "0.17.0",
5758
"@changesets/cli": "^2.27.9",
58-
"@cspell/cspell-types": "^8.15.7",
59-
"@eslint/compat": "^1.2.0",
60-
"@eslint/js": "^9.12.0",
59+
"@cspell/cspell-types": "^8.16.0",
60+
"@eslint/compat": "^1.2.3",
61+
"@eslint/js": "^9.14.0",
6162
"@stylistic/eslint-plugin-js": "^2.10.1",
6263
"@txe/eslint-plugin-x": "^0.1.0",
63-
"@types/node": "^22.7.7",
64+
"@types/node": "^22.9.0",
6465
"@vitest/coverage-v8": "^2.1.5",
65-
"concurrently": "^9.0.1",
66-
"cspell": "^8.15.7",
67-
"eslint": "^9.12.0",
66+
"concurrently": "^9.1.0",
67+
"cspell": "^8.16.0",
68+
"eslint": "^9.14.0",
6869
"eslint-config-prettier": "^9.1.0",
6970
"eslint-plugin-import": "^2.31.0",
7071
"eslint-plugin-unicorn": "^56.0.0",
71-
"globals": "^15.11.0",
72+
"globals": "^15.12.0",
7273
"prettier": "^3.3.3",
7374
"typescript": "^5.6.3",
74-
"typescript-eslint": "^8.10.0",
75-
"vite": "^5.4.9",
75+
"typescript-eslint": "^8.14.0",
76+
"vite": "^5.4.11",
7677
"vitest": "^2.1.5"
7778
}
7879
}

0 commit comments

Comments
 (0)