()
| 64 | |
| 65 | let didWarnCacheTag = false |
| 66 | function unstable_cacheTag() { |
| 67 | if (!didWarnCacheTag) { |
| 68 | didWarnCacheTag = true |
| 69 | const error = new Error( |
| 70 | '`unstable_cacheTag` was recently stabilized and should be imported as `cacheTag`. The `unstable` prefixed form will be removed in a future version of Next.js.' |
| 71 | ) |
| 72 | console.error(error) |
| 73 | } |
| 74 | return cacheExports.cacheTag.apply(this, arguments) |
| 75 | } |
| 76 | |
| 77 | cacheExports.unstable_cacheLife = unstable_cacheLife |
| 78 | cacheExports.unstable_cacheTag = unstable_cacheTag |
no test coverage detected
searching dependent graphs…