File tree 6 files changed +13
-8
lines changed
eslint-plugin-next-on-pages
6 files changed +13
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# eslint-plugin-next-on-pages
2
2
3
+ ## 1.13.12
4
+
3
5
## 1.13.11
4
6
5
7
## 1.13.10
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-plugin-next-on-pages" ,
3
- "version" : " 1.13.11 " ,
3
+ "version" : " 1.13.12 " ,
4
4
"main" : " dist/index.js" ,
5
5
"scripts" : {
6
6
"prebuild" : " rimraf dist" ,
Original file line number Diff line number Diff line change 1
1
# @cloudflare/next-on-pages
2
2
3
+ ## 1.13.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 3d651bc: fix internal usage of ` global ` instead of ` globalThis ` (which causes some reference errors)
8
+
3
9
## 1.13.11
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cloudflare/next-on-pages" ,
3
- "version" : " 1.13.11 " ,
3
+ "version" : " 1.13.12 " ,
4
4
"bin" : " ./bin/index.js" ,
5
5
"exports" : {
6
6
"." : {
Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ const patchedDefineProperty = (
47
47
globalThis . Object . defineProperty =
48
48
patchedDefineProperty as typeof globalThis . Object . defineProperty ;
49
49
50
- globalThis . AbortController = class PatchedAbortController extends AbortController {
50
+ globalThis . AbortController = class PatchedAbortController extends (
51
+ AbortController
52
+ ) {
51
53
constructor ( ) {
52
54
try {
53
55
super ( ) ;
You can’t perform that action at this time.
0 commit comments