Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

support webpack 5.x #297

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
478efce
Update dependency webpack to v5
renovate-bot Mar 26, 2021
5daf877
test: fix test for new webpack validate api
githoniel May 7, 2021
23db2b7
feat: add ChainedValueMap to support false/object value type
githoniel May 8, 2021
ec06779
feat: support webpack5
githoniel May 10, 2021
a3689b8
feat: support webpack5
githoniel May 10, 2021
c0a3bfa
fix: devserver allowedHosts duplicate
githoniel May 10, 2021
e4c5ef5
feat: support webpack5
githoniel May 10, 2021
a32e032
feat: support webpack5
githoniel May 10, 2021
10bc836
feat: support webpack5
githoniel May 10, 2021
230094f
fix: syntax mistakes
githoniel May 10, 2021
11c114b
feat: better name confict
githoniel May 10, 2021
8386ac2
chore: bump version to 7.0.0
githoniel May 10, 2021
019fd7d
chore: style:fix
githoniel May 10, 2021
25bd739
refactor: use createClass to support multi-extend, avoid name conflict
githoniel May 11, 2021
def9bd6
chore: remove empty file
githoniel May 11, 2021
d6ff817
fix: allow config.performance(false)
githoniel May 12, 2021
e7e9c58
fix: remove webpack5 removed options
githoniel May 12, 2021
af84878
feat: convert optimization.splitChunks to ChainedValueMap
githoniel May 12, 2021
2333b51
test: add test
githoniel May 12, 2021
4859d3b
chore: style fix
githoniel May 12, 2021
89adb1a
feat: update d.ts
githoniel May 12, 2021
a9c3870
chore: use github action
githoniel May 12, 2021
7401f11
chore: fix code style
githoniel May 12, 2021
5981c60
doc: update readme
githoniel May 12, 2021
3efd7c6
fix: optimization.splitChunks should be chainedValueMap
githoniel May 12, 2021
de47962
feat: add batch dts for chained
githoniel May 12, 2021
86dec5b
Update dependency webpack to v5
renovate-bot Jul 5, 2021
ed43ef0
Merge branch 'renovate/webpack-5.x' of https://github.com/neutrinojs/…
githoniel Jul 5, 2021
5dd053d
chore: style fix, update lock
githoniel Jul 5, 2021
955f4bb
fix: chainValueMap should return parent when used as function
githoniel Aug 20, 2021
bdbdb85
chore: fix code style
githoniel Aug 20, 2021
e2ee5d5
feat: update to webpack-dev-server v4, need more test
githoniel Sep 7, 2021
9fdb08c
chore: update lock
githoniel Sep 8, 2021
24bac2a
fix: devserver add client/static output
githoniel Sep 8, 2021
9b1f73c
chore: re-create lock file
githoniel Sep 8, 2021
f8eb980
chore: run fix
githoniel Sep 8, 2021
7f8f01f
fix: remove @types/tapable and @types/enhanced-resolve
githoniel Sep 8, 2021
6c93a4f
fix: since @types/webpack-dev-server still use webpack4, resolvetions…
githoniel Sep 8, 2021
0e8cd67
chore: remove test on node 10
githoniel Sep 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['10', '12', '14', '16']
node: ['12', '14', '16']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down
Loading