Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webpack.common.js - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fb8e72f7f33aa5f38e18a9967ad1892743569be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const core = require('./core/webpack')
const settings = require('./settings/webpack')

const accessibility = require('./apps/accessibility/webpack')
const comments = require('./apps/comments/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 twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack')
const updatenotifications = require('./apps/updatenotification/webpack')

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