mirror of
https://github.com/joelwmale/webhook-action.git
synced 2026-08-31 14:39:48 +08:00
feat: updates & github event support
This commit is contained in:
+777
-1550
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+777
-1550
File diff suppressed because it is too large
Load Diff
+708
-1385
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+3
-3
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esquery",
|
||||
"version": "1.4.0",
|
||||
"version": "1.5.0",
|
||||
"author": "Joel Feenstra <jrfeenst+esquery@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
|
||||
@@ -58,10 +58,10 @@
|
||||
"@rollup/plugin-json": "^4.0.2",
|
||||
"@rollup/plugin-node-resolve": "^7.1.3",
|
||||
"babel-plugin-transform-es2017-object-entries": "0.0.5",
|
||||
"chai": "^4.2.0",
|
||||
"chai": "4.2.0",
|
||||
"eslint": "^6.8.0",
|
||||
"esprima": "~4.0.1",
|
||||
"mocha": "^7.1.1",
|
||||
"mocha": "7.1.1",
|
||||
"nyc": "^15.0.1",
|
||||
"pegjs": "~0.10.0",
|
||||
"rollup": "^1.32.1",
|
||||
|
||||
+3
-55
@@ -275,17 +275,7 @@
|
||||
peg$c99 = function(n) { return nthLast(parseInt(n.join(''), 10)); },
|
||||
peg$c100 = ":",
|
||||
peg$c101 = peg$literalExpectation(":", false),
|
||||
peg$c102 = "statement",
|
||||
peg$c103 = peg$literalExpectation("statement", true),
|
||||
peg$c104 = "expression",
|
||||
peg$c105 = peg$literalExpectation("expression", true),
|
||||
peg$c106 = "declaration",
|
||||
peg$c107 = peg$literalExpectation("declaration", true),
|
||||
peg$c108 = "function",
|
||||
peg$c109 = peg$literalExpectation("function", true),
|
||||
peg$c110 = "pattern",
|
||||
peg$c111 = peg$literalExpectation("pattern", true),
|
||||
peg$c112 = function(c) {
|
||||
peg$c102 = function(c) {
|
||||
return { type: 'class', name: c };
|
||||
},
|
||||
|
||||
@@ -2497,52 +2487,10 @@
|
||||
if (peg$silentFails === 0) { peg$fail(peg$c101); }
|
||||
}
|
||||
if (s1 !== peg$FAILED) {
|
||||
if (input.substr(peg$currPos, 9).toLowerCase() === peg$c102) {
|
||||
s2 = input.substr(peg$currPos, 9);
|
||||
peg$currPos += 9;
|
||||
} else {
|
||||
s2 = peg$FAILED;
|
||||
if (peg$silentFails === 0) { peg$fail(peg$c103); }
|
||||
}
|
||||
if (s2 === peg$FAILED) {
|
||||
if (input.substr(peg$currPos, 10).toLowerCase() === peg$c104) {
|
||||
s2 = input.substr(peg$currPos, 10);
|
||||
peg$currPos += 10;
|
||||
} else {
|
||||
s2 = peg$FAILED;
|
||||
if (peg$silentFails === 0) { peg$fail(peg$c105); }
|
||||
}
|
||||
if (s2 === peg$FAILED) {
|
||||
if (input.substr(peg$currPos, 11).toLowerCase() === peg$c106) {
|
||||
s2 = input.substr(peg$currPos, 11);
|
||||
peg$currPos += 11;
|
||||
} else {
|
||||
s2 = peg$FAILED;
|
||||
if (peg$silentFails === 0) { peg$fail(peg$c107); }
|
||||
}
|
||||
if (s2 === peg$FAILED) {
|
||||
if (input.substr(peg$currPos, 8).toLowerCase() === peg$c108) {
|
||||
s2 = input.substr(peg$currPos, 8);
|
||||
peg$currPos += 8;
|
||||
} else {
|
||||
s2 = peg$FAILED;
|
||||
if (peg$silentFails === 0) { peg$fail(peg$c109); }
|
||||
}
|
||||
if (s2 === peg$FAILED) {
|
||||
if (input.substr(peg$currPos, 7).toLowerCase() === peg$c110) {
|
||||
s2 = input.substr(peg$currPos, 7);
|
||||
peg$currPos += 7;
|
||||
} else {
|
||||
s2 = peg$FAILED;
|
||||
if (peg$silentFails === 0) { peg$fail(peg$c111); }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
s2 = peg$parseidentifierName();
|
||||
if (s2 !== peg$FAILED) {
|
||||
peg$savedPos = s0;
|
||||
s1 = peg$c112(s2);
|
||||
s1 = peg$c102(s2);
|
||||
s0 = s1;
|
||||
} else {
|
||||
peg$currPos = s0;
|
||||
|
||||
Reference in New Issue
Block a user