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:
authorMorris Jobke <hey@morrisjobke.de>2019-02-19 12:01:38 +0300
committerGitHub <noreply@github.com>2019-02-19 12:01:38 +0300
commitef4e7d010e74b8ce9efdf71dbc23fc4cadc7b69e (patch)
treea3a6a044dc678ec5de08841dfd309740939ad7aa /webpack.common.js
parentd43095e17b37a3a9a967b0695f5322dfd0f58f16 (diff)
parentd6ba42057f05d19e57ca4300b059c635a8613b60 (diff)
Merge pull request #14232 from nextcloud/enh/updatenoticiation_to_single_webpack
Move updatenotifications to unified webpack
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 0d712ad65dd..60a151ada60 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -4,6 +4,7 @@ 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,
@@ -11,5 +12,6 @@ module.exports = [].concat(
files_trashbin,
files_versions,
oauth2,
- systemtags
+ systemtags,
+ updatenotifications
);