Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

16
node_modules/espree/dist/espree.cjs generated vendored
View file

@ -310,7 +310,8 @@ const SUPPORTED_VERSIONS = [
11, // 2020
12, // 2021
13, // 2022
14 // 2023
14, // 2023
15 // 2024
];
/**
@ -760,7 +761,7 @@ var espree = () => Parser => {
};
};
const version$1 = "9.4.1";
const version$1 = "9.6.0";
/**
* @fileoverview Main Espree file that converts Acorn into Esprima output.
@ -895,6 +896,7 @@ function parse(code, options) {
//------------------------------------------------------------------------------
const version = version$1;
const name = "espree";
/* istanbul ignore next */
const VisitorKeys = (function() {
@ -904,16 +906,16 @@ const VisitorKeys = (function() {
// Derive node types from VisitorKeys
/* istanbul ignore next */
const Syntax = (function() {
let name,
let key,
types = {};
if (typeof Object.create === "function") {
types = Object.create(null);
}
for (name in VisitorKeys) {
if (Object.hasOwnProperty.call(VisitorKeys, name)) {
types[name] = name;
for (key in VisitorKeys) {
if (Object.hasOwnProperty.call(VisitorKeys, key)) {
types[key] = key;
}
}
@ -931,8 +933,8 @@ const supportedEcmaVersions = getSupportedEcmaVersions();
exports.Syntax = Syntax;
exports.VisitorKeys = VisitorKeys;
exports.latestEcmaVersion = latestEcmaVersion;
exports.name = name;
exports.parse = parse;
exports.supportedEcmaVersions = supportedEcmaVersions;
exports.tokenize = tokenize;
exports.version = version;
//# sourceMappingURL=espree.cjs.map