Skip to content

Commit

Permalink
deps: update acorn to 8.8.1
Browse files Browse the repository at this point in the history
PR-URL: #45441
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
  • Loading branch information
nodejs-github-bot authored and ruyadorno committed Nov 21, 2022
1 parent 39e8731 commit ad8da86
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions deps/acorn/acorn/CHANGELOG.md
@@ -1,3 +1,9 @@
## 8.8.1 (2022-10-24)

### Bug fixes

Make type for `Comment` compatible with estree types.

## 8.8.0 (2022-07-21)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion deps/acorn/acorn/dist/acorn.d.ts
Expand Up @@ -224,7 +224,7 @@ declare namespace acorn {
}

interface Comment extends AbstractToken {
type: string
type: 'Line' | 'Block'
value: string
start: number
end: number
Expand Down
2 changes: 1 addition & 1 deletion deps/acorn/acorn/dist/acorn.js
Expand Up @@ -5527,7 +5527,7 @@

// Acorn is a tiny, fast JavaScript parser written in JavaScript.

var version = "8.8.0";
var version = "8.8.1";

Parser.acorn = {
Parser: Parser,
Expand Down
2 changes: 1 addition & 1 deletion deps/acorn/acorn/dist/acorn.mjs
Expand Up @@ -5521,7 +5521,7 @@ pp.readWord = function() {

// Acorn is a tiny, fast JavaScript parser written in JavaScript.

var version = "8.8.0";
var version = "8.8.1";

Parser.acorn = {
Parser: Parser,
Expand Down
2 changes: 1 addition & 1 deletion deps/acorn/acorn/package.json
Expand Up @@ -16,7 +16,7 @@
],
"./package.json": "./package.json"
},
"version": "8.8.0",
"version": "8.8.1",
"engines": {
"node": ">=0.4.0"
},
Expand Down

0 comments on commit ad8da86

Please sign in to comment.