mirror of
https://github.com/joelwmale/webhook-action.git
synced 2026-09-02 18:44:46 +08:00
add ability to call self-signed or invalid certificate clients
This commit is contained in:
+1
-1
@@ -27,7 +27,7 @@ function getJsxTokens(acorn) {
|
||||
const tokTypes = {
|
||||
jsxName: new TokenType('jsxName'),
|
||||
jsxText: new TokenType('jsxText', {beforeExpr: true}),
|
||||
jsxTagStart: new TokenType('jsxTagStart'),
|
||||
jsxTagStart: new TokenType('jsxTagStart', {startsExpr: true}),
|
||||
jsxTagEnd: new TokenType('jsxTagEnd')
|
||||
};
|
||||
|
||||
|
||||
+3
-3
@@ -2,7 +2,7 @@
|
||||
"name": "acorn-jsx",
|
||||
"description": "Modern, fast React.js JSX parser",
|
||||
"homepage": "https://github.com/acornjs/acorn-jsx",
|
||||
"version": "5.2.0",
|
||||
"version": "5.3.1",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Ingvar Stepanyan",
|
||||
@@ -19,9 +19,9 @@
|
||||
"test": "node test/run.js"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"acorn": "^6.0.0 || ^7.0.0"
|
||||
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"acorn": "^7.0.0"
|
||||
"acorn": "^8.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user