forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cache.config.js
43 lines (37 loc) · 957 Bytes
/
cache.config.js
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
/**
* Convenience script to harmonize cache directories across various
* tooling such as eslint and jest.
*
* Recently more & more tools like babel-loader tend to cache in
* node_modules/.cache (@link https://github.com/avajs/find-cache-dir)
* It's possible too.
*/
// @ts-check
'use strict';
const { resolve } = require('path');
const globalCachePath = resolve(`${__dirname}/.cache`);
/**
* @param {string} packageName
* @returns string
*/
function sanitize(packageName) {
return packageName.replace('/', '.').replace(/[^a-z0-9.@_-]+/gi, '-');
}
/**
* @param {string} packageName
* @returns string
*/
function getEslintCachePath(packageName) {
return `${globalCachePath}/${sanitize(packageName)}/eslint`;
}
/**
* @param {string} packageName
* @returns string
*/
function getJestCachePath(packageName) {
return `${globalCachePath}/${sanitize(packageName)}/jest`;
}
module.exports = {
getJestCachePath,
getEslintCachePath,
};