@baeta/plugin-graphql 0.0.14 → 0.0.15
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 +10 -0
- package/{index.cjs → dist/index.cjs} +0 -0
- package/{index.d.ts → dist/index.d.ts} +0 -0
- package/{index.js → dist/index.js} +0 -0
- package/package.json +15 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @baeta/plugin-graphql
|
|
2
2
|
|
|
3
|
+
## 0.0.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`11031eb`](https://github.com/andreisergiu98/baeta/commit/11031ebf71808e1c20e8f8e98259359ceb50cd77) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - add a more reliable publishing method
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`c034d77`](https://github.com/andreisergiu98/baeta/commit/c034d77a1e3c75871ed768ab8bf3594635b02c0a), [`11031eb`](https://github.com/andreisergiu98/baeta/commit/11031ebf71808e1c20e8f8e98259359ceb50cd77)]:
|
|
10
|
+
- @baeta/config@0.0.9
|
|
11
|
+
- @baeta/plugin@0.0.14
|
|
12
|
+
|
|
3
13
|
## 0.0.14
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baeta/plugin-graphql",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Andrei Pampu <pampu.andrei@pm.me>",
|
|
6
6
|
"homepage": "https://github.com/andreisergiu98/baeta#readme",
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsup",
|
|
18
18
|
"types": "tsc --noEmit",
|
|
19
|
-
"prepack": "yarn prep
|
|
19
|
+
"prepack": "yarn prep",
|
|
20
20
|
"postpack": "yarn prep --clean"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@baeta/config": "^0.0.
|
|
24
|
-
"@baeta/plugin": "^0.0.
|
|
23
|
+
"@baeta/config": "^0.0.9",
|
|
24
|
+
"@baeta/plugin": "^0.0.14",
|
|
25
25
|
"@graphql-codegen/core": "^2.6.8",
|
|
26
26
|
"@graphql-codegen/plugin-helpers": "^3.1.2",
|
|
27
27
|
"@graphql-codegen/typescript": "^2.8.7",
|
|
@@ -52,27 +52,26 @@
|
|
|
52
52
|
"graphql": "^16.6.0"
|
|
53
53
|
},
|
|
54
54
|
"files": [
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"*.d.ts",
|
|
58
|
-
"!ava.config.js"
|
|
55
|
+
"dist",
|
|
56
|
+
"package.json"
|
|
59
57
|
],
|
|
60
58
|
"publishConfig": {
|
|
61
59
|
"access": "public",
|
|
62
|
-
"
|
|
60
|
+
"types": "dist/index.d.ts",
|
|
63
61
|
"exports": {
|
|
64
62
|
".": {
|
|
65
|
-
"import": "./index.js",
|
|
66
|
-
"require": "./index.cjs",
|
|
67
|
-
"types": "./index.d.ts"
|
|
63
|
+
"import": "./dist/index.js",
|
|
64
|
+
"require": "./dist/index.cjs",
|
|
65
|
+
"types": "./dist/index.d.ts"
|
|
68
66
|
}
|
|
69
67
|
}
|
|
70
68
|
},
|
|
71
69
|
"exports": {
|
|
72
70
|
".": {
|
|
73
|
-
"import": "./index.js",
|
|
74
|
-
"require": "./index.cjs",
|
|
75
|
-
"types": "./index.d.ts"
|
|
71
|
+
"import": "./dist/index.js",
|
|
72
|
+
"require": "./dist/index.cjs",
|
|
73
|
+
"types": "./dist/index.d.ts"
|
|
76
74
|
}
|
|
77
|
-
}
|
|
75
|
+
},
|
|
76
|
+
"types": "dist/index.d.ts"
|
|
78
77
|
}
|