diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-05-09 18:39:40 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-05-09 18:42:52 +0200 |
commit | e5fefd1338b9cf493ac9be7f4b00f27e14b73d04 (patch) | |
tree | ad2eb8286d73a05b4d375d7e2b5fe5c6ad76666e /webpack.common.js | |
parent | 38efad788194f3a700ac7a6d86708e0968d86e1b (diff) | |
download | nextcloud-server-e5fefd1338b9cf493ac9be7f4b00f27e14b73d04.tar.gz nextcloud-server-e5fefd1338b9cf493ac9be7f4b00f27e14b73d04.zip |
webpackify workflowengine
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
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 0fb8e72f7f3..94398ebc4b8 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -10,6 +10,7 @@ const oauth2 = require('./apps/oauth2/webpack') const systemtags = require('./apps/systemtags/webpack') const twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack') const updatenotifications = require('./apps/updatenotification/webpack') +const workflowengine = require('./apps/workflowengine/webpack') module.exports = [].concat( core, @@ -22,5 +23,6 @@ module.exports = [].concat( oauth2, systemtags, twofactor_backupscodes, - updatenotifications + updatenotifications, + workflowengine ); |