nextcloud /
tasks
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | const merge = require('webpack-merge') |
||
|
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...
|
|||
| 2 | const common = require('./webpack.common.js') |
||
|
0 ignored issues
–
show
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...
|
|||
| 3 | |||
| 4 | module.exports = merge(common, { |
||
| 5 | mode: 'production', |
||
| 6 | devtool: '#source-map' |
||
| 7 | }); |
||
| 8 |