webpipe-js 2.0.2 → 2.0.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.
- package/dist/index.cjs +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -569,9 +569,7 @@ var Parser = class {
|
|
|
569
569
|
return { varType, name, value, inlineComment: inlineComment || void 0 };
|
|
570
570
|
}
|
|
571
571
|
parseGraphQLSchema() {
|
|
572
|
-
this.expect("
|
|
573
|
-
this.skipInlineSpaces();
|
|
574
|
-
this.expect("schema");
|
|
572
|
+
this.expect("graphqlSchema");
|
|
575
573
|
this.skipInlineSpaces();
|
|
576
574
|
this.expect("=");
|
|
577
575
|
const inlineComment = this.parseInlineComment();
|
package/dist/index.mjs
CHANGED
|
@@ -520,9 +520,7 @@ var Parser = class {
|
|
|
520
520
|
return { varType, name, value, inlineComment: inlineComment || void 0 };
|
|
521
521
|
}
|
|
522
522
|
parseGraphQLSchema() {
|
|
523
|
-
this.expect("
|
|
524
|
-
this.skipInlineSpaces();
|
|
525
|
-
this.expect("schema");
|
|
523
|
+
this.expect("graphqlSchema");
|
|
526
524
|
this.skipInlineSpaces();
|
|
527
525
|
this.expect("=");
|
|
528
526
|
const inlineComment = this.parseInlineComment();
|