mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2026-01-10 13:31:41 -07:00
node_modules: update (#127)
Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com>
This commit is contained in:
4
node_modules/yaml/dist/parse/parser.js
generated
vendored
4
node_modules/yaml/dist/parse/parser.js
generated
vendored
@@ -231,7 +231,7 @@ class Parser {
|
||||
}
|
||||
*step() {
|
||||
const top = this.peek(1);
|
||||
if (this.type === 'doc-end' && (!top || top.type !== 'doc-end')) {
|
||||
if (this.type === 'doc-end' && top?.type !== 'doc-end') {
|
||||
while (this.stack.length > 0)
|
||||
yield* this.pop();
|
||||
this.stack.push({
|
||||
@@ -763,7 +763,7 @@ class Parser {
|
||||
do {
|
||||
yield* this.pop();
|
||||
top = this.peek(1);
|
||||
} while (top && top.type === 'flow-collection');
|
||||
} while (top?.type === 'flow-collection');
|
||||
}
|
||||
else if (fc.end.length === 0) {
|
||||
switch (this.type) {
|
||||
|
||||
Reference in New Issue
Block a user