-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathcache.ts
43 lines (39 loc) · 1.21 KB
/
cache.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { existsSync } from 'fs'
import { join, resolve } from 'path'
import { shouldSkip } from './utils'
const findDistDir = (publish) => {
// In normal operation, the dist dir is the same as the publish dir
if (!shouldSkip()) {
return publish
}
// In this situation, the user has disabled the plugin, which means that they might be using next export,
// so we'll look in a few places to find the site root. This allows us to find the .next directory.
for (const root of [resolve(publish, '..'), resolve(publish, '..', '..')]) {
if (existsSync(join(root, 'next.config.js'))) {
return join(root, '.next')
}
}
return null
}
export const restoreCache = async ({ cache, publish }) => {
const distDir = findDistDir(publish)
if (!distDir) {
return
}
if (await cache.restore(join(distDir, 'cache'))) {
console.log('Next.js cache restored.')
} else {
console.log('No Next.js cache to restore.')
}
}
export const saveCache = async ({ cache, publish }) => {
const distDir = findDistDir(publish)
if (!distDir) {
return
}
if (await cache.save(join(distDir, 'cache'))) {
console.log('Next.js cache saved.')
} else {
console.log('No Next.js cache to save.')
}
}