@mearie/vite 0.1.3 → 0.1.4
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/README.md +4 -1
- package/package.json +12 -5
package/README.md
CHANGED
|
@@ -8,9 +8,12 @@ GraphQL queries written as template literals in your code.
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
npm install @mearie/vite
|
|
11
|
+
npm install -D @mearie/vite
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
This package provides a Vite plugin for automatic GraphQL code generation
|
|
15
|
+
during development and build.
|
|
16
|
+
|
|
14
17
|
## Usage
|
|
15
18
|
|
|
16
19
|
Add the plugin to your Vite configuration:
|
package/package.json
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mearie/vite",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Type-safe, zero-overhead GraphQL client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphql",
|
|
7
7
|
"graphql-client",
|
|
8
8
|
"typescript",
|
|
9
|
+
"type-safe",
|
|
9
10
|
"codegen",
|
|
10
|
-
"cache"
|
|
11
|
+
"cache",
|
|
12
|
+
"normalized-cache",
|
|
13
|
+
"react",
|
|
14
|
+
"vue",
|
|
15
|
+
"svelte",
|
|
16
|
+
"solid",
|
|
17
|
+
"vite"
|
|
11
18
|
],
|
|
12
|
-
"homepage": "https://
|
|
19
|
+
"homepage": "https://mearie.dev/",
|
|
13
20
|
"bugs": {
|
|
14
21
|
"url": "https://github.com/devunt/mearie/issues"
|
|
15
22
|
},
|
|
@@ -45,8 +52,8 @@
|
|
|
45
52
|
"README.md"
|
|
46
53
|
],
|
|
47
54
|
"dependencies": {
|
|
48
|
-
"@mearie/codegen": "0.1.
|
|
49
|
-
"@mearie/config": "0.1.
|
|
55
|
+
"@mearie/codegen": "0.1.4",
|
|
56
|
+
"@mearie/config": "0.1.2"
|
|
50
57
|
},
|
|
51
58
|
"devDependencies": {
|
|
52
59
|
"tsdown": "^0.20.3",
|