Skip to content

Commit ad8da86

Browse files
nodejs-github-botruyadorno
authored andcommitted
deps: update acorn to 8.8.1
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>
1 parent 39e8731 commit ad8da86

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

deps/acorn/acorn/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.8.1 (2022-10-24)
2+
3+
### Bug fixes
4+
5+
Make type for `Comment` compatible with estree types.
6+
17
## 8.8.0 (2022-07-21)
28

39
### Bug fixes

deps/acorn/acorn/dist/acorn.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ declare namespace acorn {
224224
}
225225

226226
interface Comment extends AbstractToken {
227-
type: string
227+
type: 'Line' | 'Block'
228228
value: string
229229
start: number
230230
end: number

deps/acorn/acorn/dist/acorn.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5527,7 +5527,7 @@
55275527

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

5530-
var version = "8.8.0";
5530+
var version = "8.8.1";
55315531

55325532
Parser.acorn = {
55335533
Parser: Parser,

deps/acorn/acorn/dist/acorn.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5521,7 +5521,7 @@ pp.readWord = function() {
55215521

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

5524-
var version = "8.8.0";
5524+
var version = "8.8.1";
55255525

55265526
Parser.acorn = {
55275527
Parser: Parser,

deps/acorn/acorn/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"./package.json": "./package.json"
1818
},
19-
"version": "8.8.0",
19+
"version": "8.8.1",
2020
"engines": {
2121
"node": ">=0.4.0"
2222
},

0 commit comments

Comments
 (0)