@soda-gql/vite-plugin 0.11.1 → 0.11.3

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -52,6 +52,7 @@ sodaGqlPlugin({
52
52
  1. **Build phase** - The plugin uses `@soda-gql/builder` to analyze source files and generate artifacts
53
53
  2. **Transform phase** - Uses `@soda-gql/babel` to replace `gql.default()` calls with `gqlRuntime.getOperation()` calls
54
54
  3. **Watch mode** - Automatically rebuilds artifacts when GraphQL files change
55
+ 4. **Internal module stubbing** - graphql-system and inject modules are stubbed with `export {};` in the bundle
55
56
 
56
57
  ## Requirements
57
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soda-gql/vite-plugin",
3
- "version": "0.11.1",
3
+ "version": "0.11.3",
4
4
  "description": "Vite plugin for soda-gql",
5
5
  "type": "module",
6
6
  "private": false,
@@ -48,15 +48,15 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@babel/core": "^7.24.0",
51
- "@soda-gql/babel": "0.11.1",
52
- "@soda-gql/builder": "0.11.1",
53
- "@soda-gql/common": "0.11.1",
54
- "@soda-gql/config": "0.11.1"
51
+ "@soda-gql/babel": "0.11.3",
52
+ "@soda-gql/builder": "0.11.3",
53
+ "@soda-gql/common": "0.11.3",
54
+ "@soda-gql/config": "0.11.3"
55
55
  },
56
56
  "devDependencies": {},
57
57
  "peerDependencies": {
58
58
  "vite": "^5.0.0 || ^6.0.0",
59
- "@soda-gql/swc": "0.11.1"
59
+ "@soda-gql/swc": "0.11.3"
60
60
  },
61
61
  "optionalDependencies": {}
62
62
  }