Skip to content

Commit 131cdbc

Browse files
authored
Merge pull request #7 from tenex-engineering/develop
v0.7.0-alpha
2 parents 97158db + a7a6bb8 commit 131cdbc

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
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.7.0
4+
5+
### Minor Changes
6+
7+
- 0fd6fc5: refactor
8+
39
## 0.6.0
410

511
### Minor Changes

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@txe/graphql-x",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "GraphQL eXpansion",
55
"keywords": [
66
"graphql",
@@ -24,14 +24,13 @@
2424
"!dist/types/",
2525
"!**/*.spec.*"
2626
],
27-
"main": "dist/index.js",
28-
"module": "dist/index.js",
27+
"main": "./dist/index.js",
28+
"module": "./dist/index.js",
2929
"bin": {
3030
"graphql-x": "bin/graphql-x"
3131
},
3232
"imports": {
33-
"#app/*": "./dist/*",
34-
"#documents/*": "./documents/*"
33+
"#app/*": "./dist/*"
3534
},
3635
"exports": {
3736
".": {

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"types": ["vite/client"],
66

77
"paths": {
8-
"#app/*": ["./src/*"]
8+
"#app/*": ["./src/*"],
9+
"#documents/*": ["./documents/*"]
910
},
1011

1112
/* Base Options: */

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export default defineConfig({
1414
resolve: {
1515
alias: {
1616
'#app': fileURLToPath(new URL('./src', import.meta.url)),
17+
'#documents': fileURLToPath(new URL('./documents', import.meta.url)),
1718
},
1819
},
1920
})

0 commit comments

Comments
 (0)