diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-13 22:54:48 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-14 12:17:57 +0100 |
commit | 0357a30a58fd212ad5f0b4837d3f62bd1f57ddfc (patch) | |
tree | 590686c902070c6bd842e2faa610d637c35ed86d /webpack.common.js | |
parent | 15dc1fa62f6a42c3ccb3e54d9609c3116bf36357 (diff) | |
download | nextcloud-server-0357a30a58fd212ad5f0b4837d3f62bd1f57ddfc.tar.gz nextcloud-server-0357a30a58fd212ad5f0b4837d3f62bd1f57ddfc.zip |
Move systemtags to common webpack
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'webpack.common.js')
-rw-r--r-- | webpack.common.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js index f6a0d0213ae..fd28e53b91b 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -2,9 +2,12 @@ const core = require('./core/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') module.exports = [].concat( core, files_trashbin, files_versions, - oauth2); + oauth2, + systemtags +); |