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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-02-15 22:31:47 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-18 15:22:58 +0300
commitd6ba42057f05d19e57ca4300b059c635a8613b60 (patch)
tree0e6f29eae0483b91e1dc724043596ed5d9c49d15 /webpack.common.js
parente91f052576208d763246c190f1d919c0dd4a655a (diff)
Move updatenotifications to unified webpack
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index fd28e53b91b..0897894fa50 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -3,11 +3,13 @@ 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_trashbin,
files_versions,
oauth2,
- systemtags
+ systemtags,
+ updatenotifications
);