mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
|
// silence settings module
|
||
|
console.log = function () {}
|
||
|
const Settings = require('@overleaf/settings')
|
||
|
|
||
|
const MODULES = Settings.moduleImportSequence
|
||
|
const TARGET = process.argv.slice(2).pop() || 'test_acceptance'
|
||
|
|
||
|
console.debug(MODULES.map(name => `modules/${name}/${TARGET}`).join('\n'))
|