mirror of
https://github.com/actions/configure-pages.git
synced 2025-12-08 08:06:09 +00:00
Update distributables after Dependabot 🤖
This commit is contained in:
12
dist/index.js
vendored
12
dist/index.js
vendored
@@ -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
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user