webpipe-js 2.0.67 → 2.0.68
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -378,7 +378,7 @@ var Parser = class {
|
|
|
378
378
|
if (bt !== null) return { config: bt, configType: "backtick" };
|
|
379
379
|
const dq = this.tryParse(() => this.parseQuotedString());
|
|
380
380
|
if (dq !== null) return { config: dq, configType: "quoted" };
|
|
381
|
-
const id = this.tryParse(() => this.
|
|
381
|
+
const id = this.tryParse(() => this.parseScopedIdentifier());
|
|
382
382
|
if (id !== null) return { config: id, configType: "identifier" };
|
|
383
383
|
throw new ParseFailure("step-config", this.pos);
|
|
384
384
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -324,7 +324,7 @@ var Parser = class {
|
|
|
324
324
|
if (bt !== null) return { config: bt, configType: "backtick" };
|
|
325
325
|
const dq = this.tryParse(() => this.parseQuotedString());
|
|
326
326
|
if (dq !== null) return { config: dq, configType: "quoted" };
|
|
327
|
-
const id = this.tryParse(() => this.
|
|
327
|
+
const id = this.tryParse(() => this.parseScopedIdentifier());
|
|
328
328
|
if (id !== null) return { config: id, configType: "identifier" };
|
|
329
329
|
throw new ParseFailure("step-config", this.pos);
|
|
330
330
|
}
|