forked from MetaMask/metamask-mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfingerprint.config.js
More file actions
46 lines (44 loc) · 1.14 KB
/
fingerprint.config.js
File metadata and controls
46 lines (44 loc) · 1.14 KB
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
44
45
46
/* eslint-disable import/no-commonjs */
/** @type {import('@expo/fingerprint').Config} */
/**
* This config is used when generating an EAS fingerprint for the project.
* Docs - https://docs.expo.dev/versions/latest/sdk/fingerprint/#fingerprintconfigjs
*/
const config = {
/**
* Track files and directories under `extraSources` if they affect native code changes.
*/
extraSources: [
{
type: 'dir',
filePath: '.yarn/patches',
reasons: ['Detect yarn patch changes.'],
},
{
type: 'dir',
filePath: '.github/workflows',
reasons: ['Detect Github workflow changes.'],
},
{
type: 'dir',
filePath: '.github/scripts',
reasons: ['Detect Github workflow script changes.'],
},
{
type: 'file',
filePath: 'react-native.config.js',
reasons: ['Detect react-native.config.js changes.'],
},
{
type: 'file',
filePath: './scripts/build.sh',
reasons: ['Detect build configuration changes.'],
},
{
type: 'file',
filePath: './scripts/setup.mjs',
reasons: ['Detect setup script changes.'],
},
],
};
module.exports = config;