diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-30 16:10:23 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-30 18:53:02 +0200 |
commit | 73de7a1de5532746ef0f82dcb22b4356e5f98d7a (patch) | |
tree | d1b1d89362e4c6f2e24516448ac5ab36466aed84 /webpack.common.js | |
parent | 07d39269bd64c20fd8404fcd6f0af5a1790476b7 (diff) | |
download | nextcloud-server-73de7a1de5532746ef0f82dcb22b4356e5f98d7a.tar.gz nextcloud-server-73de7a1de5532746ef0f82dcb22b4356e5f98d7a.zip |
fix(deps): Drop `ical.js` from dependencies
This seems to be fully replaced with `@nextcloud/calendar-availablity`
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'webpack.common.js')
-rw-r--r-- | webpack.common.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/webpack.common.js b/webpack.common.js index ee6a4953169..21bd2084f0e 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -167,12 +167,6 @@ module.exports = { // We need to provide the path to node_moduels as otherwise npm link will fail due // to tribute.js checking for jQuery in @nextcloud/vue jQuery: path.resolve(path.join(__dirname, 'node_modules/jquery')), - - // Shim ICAL to prevent using the global object (window.ICAL). - // The library ical.js heavily depends on instanceof checks which will - // break if two separate versions of the library are used (e.g. bundled one - // and global one). - ICAL: 'ical.js', }), new WorkboxPlugin.GenerateSW({ |