nextcloud /
server
| 1 | const core = require('./core/webpack'); |
||
| 2 | const files_trashbin = require('./apps/files_trashbin/webpack') |
||
| 3 | const files_versions = require('./apps/files_versions/webpack'); |
||
| 4 | const oauth2 = require('./apps/oauth2/webpack') |
||
| 5 | const systemtags = require('./apps/systemtags/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...
|
|||
| 6 | |||
| 7 | module.exports = [].concat( |
||
| 8 | core, |
||
| 9 | files_trashbin, |
||
| 10 | files_versions, |
||
| 11 | oauth2, |
||
| 12 | systemtags |
||
| 13 | ); |
||
| 14 |