You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
569 B
JavaScript
21 lines
569 B
JavaScript
2 years ago
|
const defaultExclude = [
|
||
|
'**/node_modules/**', '**/.git*/**', '**/.git*',
|
||
|
'*.{exe,docx}',
|
||
|
'**/cache*/**', '**/tmp*/**'
|
||
|
];
|
||
|
|
||
|
export const cfg = {
|
||
|
'info': {
|
||
|
folder: 'HN-information-system',
|
||
|
exclude: [].concat(defaultExclude, ['{document,download_statement,sample}/**']),
|
||
|
},
|
||
|
'gh': {
|
||
|
folder: 'HN-globalhighlights.com',
|
||
|
exclude: [].concat(defaultExclude, ['**/{image,design,system}/**']),
|
||
|
},
|
||
|
'ch': {
|
||
|
folder: 'HN-chinahighlights.com',
|
||
|
exclude: [].concat(defaultExclude, ['**/{image,design,system,pdf}/**']),
|
||
|
},
|
||
|
};
|