Skip to content

Commit 8b44599

Browse files
authored
Merge pull request #16 from tenex-engineering/develop
v0.12.0-alpha
2 parents b9f82c3 + b1f3a93 commit 8b44599

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
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.12.0
4+
5+
### Minor Changes
6+
7+
- 9be3797: config package exports
8+
39
## 0.11.0
410

511
### Minor Changes

cspell.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
addWords: true,
1313
},
1414
],
15+
useGitignore: true,
1516
dictionaries: ['words'],
1617
ignorePaths: ['pnpm-lock.yaml'],
1718
}

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"name": "@txe/graphql-x",
3+
"version": "0.12.0",
24
"scripts": {
35
"ci": "npm run check-lint && npm run build && npm run check-exports && npm run test && npm run check-format && npm run check-spelling",
46
"dev": "concurrently --names=\"build,test\" --prefix-colors=\"cyan,green\" \"npm run watch:build -- --noEmit\" \"npm run watch:test\"",
@@ -13,8 +15,6 @@
1315
"watch:build": "tsc --watch --preserveWatchOutput",
1416
"watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --clearScreen=false"
1517
},
16-
"name": "@txe/graphql-x",
17-
"version": "0.11.0",
1818
"description": "GraphQL eXpansion",
1919
"license": "MIT",
2020
"author": "Chabib N. R. <[email protected]> (https://tenex.engineering)",
@@ -31,7 +31,8 @@
3131
"expansion"
3232
],
3333
"type": "module",
34-
"main": "dist/index.js",
34+
"main": "./dist/index.js",
35+
"exports": "./dist/index.js",
3536
"bin": {
3637
"graphql-x": "bin/graphql-x"
3738
},

0 commit comments

Comments
 (0)