@graphql-tools/graphql-tag-pluck 7.2.1 → 7.2.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 (3) hide show
  1. package/index.js +3 -0
  2. package/index.mjs +3 -0
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -96,6 +96,9 @@ function generateConfig(filePath, code, _options) {
96
96
  case '.vue':
97
97
  plugins.push('typescript', 'vue');
98
98
  break;
99
+ case '.svelte':
100
+ plugins.push('typescript', 'svelte');
101
+ break;
99
102
  default:
100
103
  plugins.push('jsx', ...dynamicFlowPlugins);
101
104
  break;
package/index.mjs CHANGED
@@ -71,6 +71,9 @@ function generateConfig(filePath, code, _options) {
71
71
  case '.vue':
72
72
  plugins.push('typescript', 'vue');
73
73
  break;
74
+ case '.svelte':
75
+ plugins.push('typescript', 'svelte');
76
+ break;
74
77
  default:
75
78
  plugins.push('jsx', ...dynamicFlowPlugins);
76
79
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-tools/graphql-tag-pluck",
3
- "version": "7.2.1",
3
+ "version": "7.2.2",
4
4
  "description": "Pluck graphql-tag template literals",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {