diff options
author | Gary Kim <gary@garykim.dev> | 2020-04-17 00:00:23 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2020-04-17 00:03:01 +0800 |
commit | 646031a04977de3886c5e3d4a4ab7726f52b220b (patch) | |
tree | 179f2ba4a38d74658a13061e1ab718848ba05830 /webpack.common.js | |
parent | e9795d01f12bdc5aec96350cb428b95814963c43 (diff) | |
download | nextcloud-server-646031a04977de3886c5e3d4a4ab7726f52b220b.tar.gz nextcloud-server-646031a04977de3886c5e3d4a4ab7726f52b220b.zip |
Rename updatenotifications webpack module to updatenotification
The module build name for `updatenotification` is actually
`updatenotifications` which can be confusing.
It is the only module with a name that is
different from the app's name.
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'webpack.common.js')
-rw-r--r-- | webpack.common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.common.js b/webpack.common.js index e37340973a8..ee8db43e728 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -14,7 +14,7 @@ const oauth2 = require('./apps/oauth2/webpack') const settings = require('./apps/settings/webpack') const systemtags = require('./apps/systemtags/webpack') const twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack') -const updatenotifications = require('./apps/updatenotification/webpack') +const updatenotification = require('./apps/updatenotification/webpack') const workflowengine = require('./apps/workflowengine/webpack') const modules = { @@ -29,7 +29,7 @@ const modules = { settings, systemtags, twofactor_backupscodes, - updatenotifications, + updatenotification, workflowengine } |