A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/development/ts-migration-dashboard/scripts/constants.ts

19 lines
490 B

import path from 'path';
export const BASE_DIRECTORY = path.resolve(__dirname, '../../..');
export const ENTRYPOINT_PATTERNS = [
'app/scripts/background',
'app/scripts/contentscript',
'app/scripts/disable-console',
'app/scripts/inpage',
'app/scripts/phishing-detect',
'app/scripts/sentry-install',
'app/scripts/ui',
'development/build/index',
'**/*.stories',
'**/*.test',
];
export const FILES_TO_CONVERT_PATH = path.join(
__dirname,
'../files-to-convert.json',
);