diff options
author | silverwind <me@silverwind.io> | 2022-10-10 14:02:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 14:02:20 +0200 |
commit | 7044d34ae577b54d42ea5dee13faa772036e9a77 (patch) | |
tree | 5c9fe498a97bf62db9acadf6f8827c2b08fe03b9 /webpack.config.js | |
parent | Allow creation of OAuth2 applications for orgs (#18084) (diff) | |
download | forgejo-7044d34ae577b54d42ea5dee13faa772036e9a77.tar.xz forgejo-7044d34ae577b54d42ea5dee13faa772036e9a77.zip |
Update JS dependencies and eslint config (#21388)
- Update all JS dependencies and playwright image
- Add new eslint rules, enable a few more, fix issues
- Regenerate SVGs
- Tested Vue and Swagger
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 820c1359cf..2663242992 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -261,7 +261,7 @@ export default { excludeAssets: [ /^js\/monaco-language-.+\.js$/, !isProduction && /^js\/licenses.txt$/, - ].filter((item) => !!item), + ].filter(Boolean), groupAssetsByChunk: false, groupAssetsByEmitStatus: false, groupAssetsByInfo: false, |