forked from react-native-community/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-resources.js
42 lines (38 loc) · 1.08 KB
/
check-resources.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
import fetch from 'cross-fetch';
import libraries from '../react-native-libraries.json' assert { type: 'json' };
import { sleep } from './helpers.js';
console.log('⬇️ Attempting to fetch examples and images');
libraries.forEach(lib => {
if (lib.examples) {
lib.examples.forEach(async (example, i) => {
await sleep(500);
setTimeout(() => {
fetch(example)
.then(response => {
if (response.status !== 200) {
console.warn(`EXAMPLE: ${example} returned ${response.status}`);
}
})
.catch(e => {
console.warn(`EXAMPLE: errored! ${e}`);
});
}, 150 * i);
});
}
if (lib.images) {
lib.images.forEach(async (img, i) => {
await sleep(500);
setTimeout(() => {
fetch(img)
.then(response => {
if (response.status !== 200) {
console.warn(`IMG: ${img} returned ${response.status}`);
}
})
.catch(e => {
console.warn(`IMG: errored! ${e}`);
});
}, 150 * i);
});
}
});