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:
77
dist/index.js
vendored
77
dist/index.js
vendored
@@ -16809,14 +16809,6 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|||||||
* @type {VisitorKeys}
|
* @type {VisitorKeys}
|
||||||
*/
|
*/
|
||||||
const KEYS = {
|
const KEYS = {
|
||||||
AssignmentExpression: [
|
|
||||||
"left",
|
|
||||||
"right"
|
|
||||||
],
|
|
||||||
AssignmentPattern: [
|
|
||||||
"left",
|
|
||||||
"right"
|
|
||||||
],
|
|
||||||
ArrayExpression: [
|
ArrayExpression: [
|
||||||
"elements"
|
"elements"
|
||||||
],
|
],
|
||||||
@@ -16827,16 +16819,24 @@ const KEYS = {
|
|||||||
"params",
|
"params",
|
||||||
"body"
|
"body"
|
||||||
],
|
],
|
||||||
|
AssignmentExpression: [
|
||||||
|
"left",
|
||||||
|
"right"
|
||||||
|
],
|
||||||
|
AssignmentPattern: [
|
||||||
|
"left",
|
||||||
|
"right"
|
||||||
|
],
|
||||||
AwaitExpression: [
|
AwaitExpression: [
|
||||||
"argument"
|
"argument"
|
||||||
],
|
],
|
||||||
BlockStatement: [
|
|
||||||
"body"
|
|
||||||
],
|
|
||||||
BinaryExpression: [
|
BinaryExpression: [
|
||||||
"left",
|
"left",
|
||||||
"right"
|
"right"
|
||||||
],
|
],
|
||||||
|
BlockStatement: [
|
||||||
|
"body"
|
||||||
|
],
|
||||||
BreakStatement: [
|
BreakStatement: [
|
||||||
"label"
|
"label"
|
||||||
],
|
],
|
||||||
@@ -16878,6 +16878,12 @@ const KEYS = {
|
|||||||
"test"
|
"test"
|
||||||
],
|
],
|
||||||
EmptyStatement: [],
|
EmptyStatement: [],
|
||||||
|
ExperimentalRestProperty: [
|
||||||
|
"argument"
|
||||||
|
],
|
||||||
|
ExperimentalSpreadProperty: [
|
||||||
|
"argument"
|
||||||
|
],
|
||||||
ExportAllDeclaration: [
|
ExportAllDeclaration: [
|
||||||
"exported",
|
"exported",
|
||||||
"source"
|
"source"
|
||||||
@@ -16897,18 +16903,6 @@ const KEYS = {
|
|||||||
ExpressionStatement: [
|
ExpressionStatement: [
|
||||||
"expression"
|
"expression"
|
||||||
],
|
],
|
||||||
ExperimentalRestProperty: [
|
|
||||||
"argument"
|
|
||||||
],
|
|
||||||
ExperimentalSpreadProperty: [
|
|
||||||
"argument"
|
|
||||||
],
|
|
||||||
ForStatement: [
|
|
||||||
"init",
|
|
||||||
"test",
|
|
||||||
"update",
|
|
||||||
"body"
|
|
||||||
],
|
|
||||||
ForInStatement: [
|
ForInStatement: [
|
||||||
"left",
|
"left",
|
||||||
"right",
|
"right",
|
||||||
@@ -16919,6 +16913,12 @@ const KEYS = {
|
|||||||
"right",
|
"right",
|
||||||
"body"
|
"body"
|
||||||
],
|
],
|
||||||
|
ForStatement: [
|
||||||
|
"init",
|
||||||
|
"test",
|
||||||
|
"update",
|
||||||
|
"body"
|
||||||
|
],
|
||||||
FunctionDeclaration: [
|
FunctionDeclaration: [
|
||||||
"id",
|
"id",
|
||||||
"params",
|
"params",
|
||||||
@@ -16959,6 +16959,7 @@ const KEYS = {
|
|||||||
JSXClosingElement: [
|
JSXClosingElement: [
|
||||||
"name"
|
"name"
|
||||||
],
|
],
|
||||||
|
JSXClosingFragment: [],
|
||||||
JSXElement: [
|
JSXElement: [
|
||||||
"openingElement",
|
"openingElement",
|
||||||
"children",
|
"children",
|
||||||
@@ -16968,6 +16969,11 @@ const KEYS = {
|
|||||||
JSXExpressionContainer: [
|
JSXExpressionContainer: [
|
||||||
"expression"
|
"expression"
|
||||||
],
|
],
|
||||||
|
JSXFragment: [
|
||||||
|
"openingFragment",
|
||||||
|
"children",
|
||||||
|
"closingFragment"
|
||||||
|
],
|
||||||
JSXIdentifier: [],
|
JSXIdentifier: [],
|
||||||
JSXMemberExpression: [
|
JSXMemberExpression: [
|
||||||
"object",
|
"object",
|
||||||
@@ -16981,22 +16987,19 @@ const KEYS = {
|
|||||||
"name",
|
"name",
|
||||||
"attributes"
|
"attributes"
|
||||||
],
|
],
|
||||||
|
JSXOpeningFragment: [],
|
||||||
JSXSpreadAttribute: [
|
JSXSpreadAttribute: [
|
||||||
"argument"
|
"argument"
|
||||||
],
|
],
|
||||||
JSXText: [],
|
JSXSpreadChild: [
|
||||||
JSXFragment: [
|
"expression"
|
||||||
"openingFragment",
|
|
||||||
"children",
|
|
||||||
"closingFragment"
|
|
||||||
],
|
],
|
||||||
JSXClosingFragment: [],
|
JSXText: [],
|
||||||
JSXOpeningFragment: [],
|
|
||||||
Literal: [],
|
|
||||||
LabeledStatement: [
|
LabeledStatement: [
|
||||||
"label",
|
"label",
|
||||||
"body"
|
"body"
|
||||||
],
|
],
|
||||||
|
Literal: [],
|
||||||
LogicalExpression: [
|
LogicalExpression: [
|
||||||
"left",
|
"left",
|
||||||
"right"
|
"right"
|
||||||
@@ -17051,14 +17054,14 @@ const KEYS = {
|
|||||||
"body"
|
"body"
|
||||||
],
|
],
|
||||||
Super: [],
|
Super: [],
|
||||||
SwitchStatement: [
|
|
||||||
"discriminant",
|
|
||||||
"cases"
|
|
||||||
],
|
|
||||||
SwitchCase: [
|
SwitchCase: [
|
||||||
"test",
|
"test",
|
||||||
"consequent"
|
"consequent"
|
||||||
],
|
],
|
||||||
|
SwitchStatement: [
|
||||||
|
"discriminant",
|
||||||
|
"cases"
|
||||||
|
],
|
||||||
TaggedTemplateExpression: [
|
TaggedTemplateExpression: [
|
||||||
"tag",
|
"tag",
|
||||||
"quasi"
|
"quasi"
|
||||||
@@ -17178,7 +17181,6 @@ function unionWith(additionalKeys) {
|
|||||||
exports.KEYS = KEYS;
|
exports.KEYS = KEYS;
|
||||||
exports.getKeys = getKeys;
|
exports.getKeys = getKeys;
|
||||||
exports.unionWith = unionWith;
|
exports.unionWith = unionWith;
|
||||||
//# sourceMappingURL=eslint-visitor-keys.cjs.map
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
@@ -17949,7 +17951,7 @@ var espree = () => Parser => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const version$1 = "9.5.0";
|
const version$1 = "9.5.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @fileoverview Main Espree file that converts Acorn into Esprima output.
|
* @fileoverview Main Espree file that converts Acorn into Esprima output.
|
||||||
@@ -18126,7 +18128,6 @@ exports.parse = parse;
|
|||||||
exports.supportedEcmaVersions = supportedEcmaVersions;
|
exports.supportedEcmaVersions = supportedEcmaVersions;
|
||||||
exports.tokenize = tokenize;
|
exports.tokenize = tokenize;
|
||||||
exports.version = version;
|
exports.version = version;
|
||||||
//# sourceMappingURL=espree.cjs.map
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|||||||
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