eddev 0.1.31 → 0.1.32
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.
|
@@ -105,6 +105,7 @@ var graphqlPatterns = {
|
|
|
105
105
|
blocks: "./blocks/**/*.graphql",
|
|
106
106
|
views: "./views/**/*.graphql",
|
|
107
107
|
queries: "./queries/**/*.graphql",
|
|
108
|
+
fragments: "./queries/fragments/**/*.graphql",
|
|
108
109
|
};
|
|
109
110
|
var tsxPatterns = {
|
|
110
111
|
blocks: "./blocks/**/*.tsx",
|
|
@@ -291,7 +292,7 @@ function beginWork(opts) {
|
|
|
291
292
|
},
|
|
292
293
|
},
|
|
293
294
|
"types.views.ts": {
|
|
294
|
-
documents: __spreadArray([], documentSets.views, true),
|
|
295
|
+
documents: __spreadArray(__spreadArray([], documentSets.views, true), documentSets.fragments, true),
|
|
295
296
|
plugins: [
|
|
296
297
|
{
|
|
297
298
|
files: {},
|
|
@@ -311,7 +312,7 @@ function beginWork(opts) {
|
|
|
311
312
|
},
|
|
312
313
|
},
|
|
313
314
|
"types.blocks.ts": {
|
|
314
|
-
documents: __spreadArray([], documentSets.blocks, true),
|
|
315
|
+
documents: __spreadArray(__spreadArray([], documentSets.blocks, true), documentSets.fragments, true),
|
|
315
316
|
plugins: [
|
|
316
317
|
{
|
|
317
318
|
files: {},
|