diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-02-19 10:01:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-19 10:01:38 +0100 |
commit | ef4e7d010e74b8ce9efdf71dbc23fc4cadc7b69e (patch) | |
tree | a3a6a044dc678ec5de08841dfd309740939ad7aa /webpack.common.js | |
parent | d43095e17b37a3a9a967b0695f5322dfd0f58f16 (diff) | |
parent | d6ba42057f05d19e57ca4300b059c635a8613b60 (diff) | |
download | nextcloud-server-ef4e7d010e74b8ce9efdf71dbc23fc4cadc7b69e.tar.gz nextcloud-server-ef4e7d010e74b8ce9efdf71dbc23fc4cadc7b69e.zip |
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.js | 4 |
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 ); |