Skip to content

Commit

Permalink
Merge pull request #78 from actions/dependabot/npm_and_yarn/espree-9.5.0
Browse files Browse the repository at this point in the history
Bump espree from 9.4.1 to 9.5.0
  • Loading branch information
James M. Greene authored and GitHub committed Mar 15, 2023
2 parents 8255d25 + 0f0e838 commit 596b326
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
12 changes: 7 additions & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -18081,6 +18081,7 @@ function parse(code, options) {
//------------------------------------------------------------------------------

const version = version$1;
const name = "espree";

/* istanbul ignore next */
const VisitorKeys = (function() {
Expand All @@ -18090,16 +18091,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;
}
}

Expand All @@ -18117,6 +18118,7 @@ const supportedEcmaVersions = getSupportedEcmaVersions();
exports.Syntax = Syntax;
exports.VisitorKeys = VisitorKeys;
exports.latestEcmaVersion = latestEcmaVersion;
exports.name = name;
exports.parse = parse;
exports.supportedEcmaVersions = supportedEcmaVersions;
exports.tokenize = tokenize;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"espree": "^9.4.1"
"espree": "^9.5.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
Expand Down

0 comments on commit 596b326

Please sign in to comment.