Update distributables after Dependabot 🤖

This commit is contained in:
github-actions[bot]
2023-03-13 11:07:55 +00:00
parent fb49e2740e
commit 0f0e83884b
2 changed files with 8 additions and 6 deletions

12
dist/index.js vendored
View File

@@ -17946,7 +17946,7 @@ var espree = () => Parser => {
}; };
}; };
const version$1 = "9.4.1"; const version$1 = "9.5.0";
/** /**
* @fileoverview Main Espree file that converts Acorn into Esprima output. * @fileoverview Main Espree file that converts Acorn into Esprima output.
@@ -18081,6 +18081,7 @@ function parse(code, options) {
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
const version = version$1; const version = version$1;
const name = "espree";
/* istanbul ignore next */ /* istanbul ignore next */
const VisitorKeys = (function() { const VisitorKeys = (function() {
@@ -18090,16 +18091,16 @@ const VisitorKeys = (function() {
// Derive node types from VisitorKeys // Derive node types from VisitorKeys
/* istanbul ignore next */ /* istanbul ignore next */
const Syntax = (function() { const Syntax = (function() {
let name, let key,
types = {}; types = {};
if (typeof Object.create === "function") { if (typeof Object.create === "function") {
types = Object.create(null); types = Object.create(null);
} }
for (name in VisitorKeys) { for (key in VisitorKeys) {
if (Object.hasOwnProperty.call(VisitorKeys, name)) { if (Object.hasOwnProperty.call(VisitorKeys, key)) {
types[name] = name; types[key] = key;
} }
} }
@@ -18117,6 +18118,7 @@ const supportedEcmaVersions = getSupportedEcmaVersions();
exports.Syntax = Syntax; exports.Syntax = Syntax;
exports.VisitorKeys = VisitorKeys; exports.VisitorKeys = VisitorKeys;
exports.latestEcmaVersion = latestEcmaVersion; exports.latestEcmaVersion = latestEcmaVersion;
exports.name = name;
exports.parse = parse; exports.parse = parse;
exports.supportedEcmaVersions = supportedEcmaVersions; exports.supportedEcmaVersions = supportedEcmaVersions;
exports.tokenize = tokenize; exports.tokenize = tokenize;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long