UNPKG

@netlify/cache-utils

Version:

Utility for caching files in Netlify Build

7 lines (6 loc) 245 B
import { resolve } from 'path'; const DEFAULT_CACHE_DIR = '.netlify/cache/'; // Retrieve the cache directory location export const getCacheDir = function ({ cacheDir = DEFAULT_CACHE_DIR, cwd = '.' } = {}) { return resolve(cwd, cacheDir); };