@graphql-tools/webpack-loader 6.6.1 → 6.6.2

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 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -27,7 +27,7 @@ query MyQuery {
27
27
 
28
28
  If you have configured [the webpack @graphql-tools/webpack-loader](#webpack-loading-and-preprocessing), you can import modules containing graphQL queries. The imported value will be the pre-built AST.
29
29
 
30
- ```typescript
30
+ ```ts
31
31
  import MyQuery from './query.graphql'
32
32
  ```
33
33
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-tools/webpack-loader",
3
- "version": "6.6.1",
3
+ "version": "6.6.2",
4
4
  "description": "A set of utils for faster development of GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
7
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-tools/optimize": "^1.1.1",
11
- "@graphql-tools/webpack-loader-runtime": "^6.3.1",
10
+ "@graphql-tools/optimize": "1.2.0",
11
+ "@graphql-tools/webpack-loader-runtime": "6.3.1",
12
12
  "tslib": "~2.3.0"
13
13
  },
14
14
  "repository": {
@@ -31,6 +31,7 @@
31
31
  "./*": {
32
32
  "require": "./*.js",
33
33
  "import": "./*.mjs"
34
- }
34
+ },
35
+ "./package.json": "./package.json"
35
36
  }
36
37
  }