diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-15 20:31:47 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-18 13:22:58 +0100 |
commit | d6ba42057f05d19e57ca4300b059c635a8613b60 (patch) | |
tree | 0e6f29eae0483b91e1dc724043596ed5d9c49d15 /webpack.common.js | |
parent | e91f052576208d763246c190f1d919c0dd4a655a (diff) | |
download | nextcloud-server-d6ba42057f05d19e57ca4300b059c635a8613b60.tar.gz nextcloud-server-d6ba42057f05d19e57ca4300b059c635a8613b60.zip |
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.js | 4 |
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 ); |