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.
20 lines
490 B
20 lines
490 B
2 years ago
|
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',
|
||
|
);
|