summaryrefslogtreecommitdiffstats
path: root/webpack.common.js
blob: 60a151ada60034dd6214169af9b9ad5ee4d0ebdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const core = require('./core/webpack');
const files_sharing = require('./apps/files_sharing/webpack')
const files_trashbin = require('./apps/files_trashbin/webpack')
const files_versions = require('./apps/files_versions/webpack');
const oauth2 = require('./apps/oauth2/webpack')
const systemtags = require('./apps/systemtags/webpack')
const updatenotifications = require('./apps/updatenotification/webpack')

module.exports = [].concat(
	core,
	files_sharing,
	files_trashbin,
	files_versions,
	oauth2,
	systemtags,
	updatenotifications
);