nextcloud /
server
| 1 | const core = require('./core/webpack') |
||
| 2 | const settings = require('./settings/webpack') |
||
| 3 | |||
| 4 | const accessibility = require('./apps/accessibility/webpack') |
||
| 5 | const files_sharing = require('./apps/files_sharing/webpack') |
||
| 6 | const files_trashbin = require('./apps/files_trashbin/webpack') |
||
| 7 | const files_versions = require('./apps/files_versions/webpack') |
||
| 8 | const oauth2 = require('./apps/oauth2/webpack') |
||
| 9 | const systemtags = require('./apps/systemtags/webpack') |
||
| 10 | const twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack') |
||
|
0 ignored issues
–
show
Backwards Compatibility
introduced
by
Loading history...
There should be a semicolon.
Requirement of semicolons purely is a coding style issue since JavaScript has specific rules about semicolons which are followed by all browsers. Further Readings: Loading history...
|
|||
| 11 | const updatenotifications = require('./apps/updatenotification/webpack') |
||
| 12 | |||
| 13 | module.exports = [].concat( |
||
| 14 | core, |
||
| 15 | settings, |
||
| 16 | accessibility, |
||
| 17 | files_sharing, |
||
| 18 | files_trashbin, |
||
| 19 | files_versions, |
||
| 20 | oauth2, |
||
| 21 | systemtags, |
||
| 22 | twofactor_backupscodes, |
||
| 23 | updatenotifications |
||
| 24 | ); |
||
| 25 |