File tree 4 files changed +13
-420
lines changed
4 files changed +13
-420
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ export async function BundleSize() {
10
10
return prettyBytes ( size )
11
11
} catch ( error ) {
12
12
console . error ( error )
13
- return 'less than 4KB '
13
+ return 'less than 5KB '
14
14
}
15
15
}
Original file line number Diff line number Diff line change 1
1
import * as cheerio from 'cheerio'
2
+ import { unstable_cache } from 'next/cache'
2
3
3
4
enum PackageId {
4
5
nuqs = 'UGFja2FnZS00MjczNzAxNTA5' ,
@@ -12,7 +13,15 @@ export type Result = {
12
13
avatarID : string
13
14
}
14
15
15
- export async function crawlDependents ( ) {
16
+ export const crawlDependents = unstable_cache (
17
+ _crawlDependents ,
18
+ [ 'crawlDependents' ] ,
19
+ {
20
+ revalidate : 86_400
21
+ }
22
+ )
23
+
24
+ async function _crawlDependents ( ) {
16
25
const allResults : Result [ ] = [ ]
17
26
let url = `https://github.com/47ng/nuqs/network/dependents?package_id=${ PackageId . nuqs } `
18
27
while ( true ) {
You can’t perform that action at this time.
0 commit comments