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 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("graphql");
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("graphql");
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webpipe-js",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Web Pipe parser",
5
5
  "license": "ISC",
6
6
  "author": "William Cotton",