@soda-gql/webpack-plugin 0.11.2 → 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 +2 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -91,6 +91,8 @@ module.exports = {
91
91
  - Transforms soda-gql code using the Babel plugin
92
92
  - Adds file dependencies for proper HMR propagation
93
93
 
94
+ 4. **Internal Module Stubbing**: graphql-system and inject modules (scalars, adapter) are stubbed with `export {};` in the final bundle, reducing bundle size.
95
+
94
96
  ## Options
95
97
 
96
98
  ### SodaGqlWebpackPlugin Options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soda-gql/webpack-plugin",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "description": "Webpack plugin for soda-gql with HMR support",
5
5
  "type": "module",
6
6
  "private": false,
@@ -55,18 +55,18 @@
55
55
  "./package.json": "./package.json"
56
56
  },
57
57
  "dependencies": {
58
- "@soda-gql/builder": "0.11.2",
59
- "@soda-gql/common": "0.11.2",
60
- "@soda-gql/config": "0.11.2",
61
- "@soda-gql/core": "0.11.2",
62
- "@soda-gql/babel": "0.11.2"
58
+ "@soda-gql/builder": "0.11.3",
59
+ "@soda-gql/common": "0.11.3",
60
+ "@soda-gql/config": "0.11.3",
61
+ "@soda-gql/core": "0.11.3",
62
+ "@soda-gql/babel": "0.11.3"
63
63
  },
64
64
  "devDependencies": {
65
- "@soda-gql/swc": "0.11.2"
65
+ "@soda-gql/swc": "0.11.3"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "webpack": "^5.0.0",
69
- "@soda-gql/swc": "0.11.2"
69
+ "@soda-gql/swc": "0.11.3"
70
70
  },
71
71
  "optionalDependencies": {}
72
72
  }