-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrequire-from-cache.mjs
32 lines (30 loc) · 1.1 KB
/
require-from-cache.mjs
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
import catalog from "../../../.cached_schemastore/www.schemastore.org/api/json/catalog.json";
import eslintrc from "../../../.cached_schemastore/json.schemastore.org/eslintrc.json";
import partialEslintPlugins from "../../../.cached_schemastore/json.schemastore.org/partial-eslint-plugins.json";
import prettierrc from "../../../.cached_schemastore/json.schemastore.org/prettierrc.json";
/**
* @param {string} p
*/
export default function fakeRequire(p) {
if (
p.endsWith(".cached_schemastore/www.schemastore.org/api/json/catalog.json")
) {
return { ...catalog, timestamp: Infinity };
}
if (p.endsWith(".cached_schemastore/json.schemastore.org/eslintrc.json")) {
return { ...eslintrc, timestamp: Infinity };
}
if (
p.endsWith(
".cached_schemastore/json.schemastore.org/partial-eslint-plugins.json",
)
) {
return { ...partialEslintPlugins, timestamp: Infinity };
}
if (p.endsWith(".cached_schemastore/json.schemastore.org/prettierrc.json")) {
return { ...prettierrc, timestamp: Infinity };
}
console.log(`unknown:${p}`);
return {};
}
fakeRequire.resolve = () => "";