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-14 00:54:48 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-14 14:17:57 +0300
commit0357a30a58fd212ad5f0b4837d3f62bd1f57ddfc (patch)
tree590686c902070c6bd842e2faa610d637c35ed86d /webpack.common.js
parent15dc1fa62f6a42c3ccb3e54d9609c3116bf36357 (diff)
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.js5
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
+);