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.

17 lines
604 B
JavaScript

2 years ago
const defaultExclude = ['**/node_modules/**', '**/.git*/**', '**/.git*', '*.{exe,docx}', '**/cache*/**', '**/tmp*/**', '**/logs/**', '**/web.config'];
2 years ago
export const cfg = {
'info': {
2 years ago
folder: 'information-system',
2 years ago
exclude: [].concat(defaultExclude, ['{document,download_statement,sample}/**', '**/author/document/**']),
2 years ago
},
'gh': {
2 years ago
folder: 'globalhighlights.com',
2 years ago
exclude: [].concat(defaultExclude, ['**/{image,design,system}/**']),
},
'ch': {
2 years ago
folder: 'chinahighlights.com',
2 years ago
exclude: [].concat(defaultExclude, ['**/{image,design,system,pdf}/**']),
},
};