Passed
Push — master ( 53e895...cf0915 )
by Roeland
09:51
created

webpack.common.js (3 issues)

1
const core = require('./core/webpack');
2
const files_trashbin = require('./apps/files_trashbin/webpack')
3
const files_versions = require('./apps/files_versions/webpack');
0 ignored issues
show
Backwards Compatibility introduced by
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Loading history...
require does not seem to be defined.
Loading history...
4
const oauth2 = require('./apps/oauth2/webpack')
5
6
module.exports = [].concat(
0 ignored issues
show
module does not seem to be defined.
Loading history...
7
	core,
8
	files_trashbin,
9
	files_versions,
10
	oauth2);
11