Skip to content

Commit 96b369e

Browse files
authored
Merge pull request #2 from webpack-contrib/master
update from master repo
2 parents 7c5cdcc + 579fc13 commit 96b369e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+34601
-17193
lines changed

.cspell.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"pures",
6+
"icss",
7+
"styl",
8+
"nosources",
9+
"unknwon",
10+
"mycss",
11+
"memfs",
12+
"Koppers",
13+
"sokra",
14+
"plusplus",
15+
"localident",
16+
"fullhash",
17+
"requestify",
18+
"XSSI",
19+
"Requestable",
20+
"requestable",
21+
"requestify",
22+
"nourl",
23+
"stylesheet",
24+
"classname",
25+
"EACE",
26+
"UAAU",
27+
"AACZ",
28+
"MCEP",
29+
"stringifier",
30+
"Zvby",
31+
"uncnoun",
32+
"bazzy",
33+
"svars",
34+
"concat",
35+
"camelcase",
36+
"Brotli",
37+
"Contex",
38+
"vspace",
39+
"commitlint",
40+
"eslintcache"
41+
],
42+
43+
"ignorePaths": [
44+
"CHANGELOG.md",
45+
"package.json",
46+
"dist/**",
47+
"**/__snapshots__/**",
48+
"package-lock.json",
49+
"**/*.css",
50+
"**/fonts/**",
51+
"node_modules",
52+
"coverage",
53+
"*.log"
54+
]
55+
}

.github/ISSUE_TEMPLATE/BUG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ about: Something went awry and you'd like to tell us about it.
88

99
### Bug report
1010

11-
<!-- Please ask questions on discussions, StackOverflow or the webpack Gitter. -->
11+
<!-- Please ask questions on discussions or StackOverflow. -->
1212
<!-- https://github.com/webpack/webpack/discussions -->
1313
<!-- https://stackoverflow.com/questions/ask?tags=webpack -->
14-
<!-- https://gitter.im/webpack/webpack -->
1514
<!-- Issues which contain questions or support requests will be closed. -->
1615

1716
### Actual Behavior

.github/ISSUE_TEMPLATE/DOCS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Documentation Is:
2020
<!-- Please don't delete this template otherwise your issue will be closed immediately -->
2121
<!-- https://github.com/webpack/webpack/discussions -->
2222
<!-- https://stackoverflow.com/questions/ask?tags=webpack -->
23-
<!-- https://gitter.im/webpack/webpack -->
2423
<!-- Issues which contain questions or support requests will be closed. -->
2524

2625
### Your Proposal for Changes

.github/ISSUE_TEMPLATE/FEATURE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ about: Suggest an idea for this project
88

99
### Feature Proposal
1010

11-
<!-- Please ask questions on discussions, StackOverflow or the webpack Gitter. -->
11+
<!-- Please ask questions on discussions or StackOverflow. -->
1212
<!-- https://github.com/webpack/webpack/discussions -->
1313
<!-- https://stackoverflow.com/questions/ask?tags=webpack -->
14-
<!-- https://gitter.im/webpack/webpack -->
1514
<!-- Issues which contain questions or support requests will be closed. -->
1615

1716
### Feature Use Case

.github/ISSUE_TEMPLATE/MODIFICATION.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ about: Would you like something work differently? Have an alternative approach?
88

99
### Modification Proposal
1010

11-
<!-- Please ask questions on discussions, StackOverflow or the webpack Gitter. -->
11+
<!-- Please ask questions on discussions or StackOverflow. -->
1212
<!-- https://github.com/webpack/webpack/discussions -->
1313
<!-- https://stackoverflow.com/questions/ask?tags=webpack -->
14-
<!-- https://gitter.im/webpack/webpack -->
1514
<!-- Issues which contain questions or support requests will be closed. -->
1615

1716
### Expected Behavior / Situation

.github/ISSUE_TEMPLATE/SUPPORT.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
---
22
name: 🆘 Support, Help, and Advice
3-
about: 👉🏽 Need support, help, or advice? Don't open an issue! Head to https://github.com/webpack/webpack/discussions, StackOverflow or https://gitter.im/webpack/webpack.
3+
about: 👉🏽 Need support, help, or advice? Don't open an issue! Head to https://github.com/webpack/webpack/discussions or StackOverflow.
44
---
55

66
Hey there! If you need support, help, or advice then this is not the place to ask.
7-
Please visit [Discussions](https://github.com/webpack/webpack/discussions), [StackOverflow](https://stackoverflow.com/questions/tagged/webpack)
8-
or [the Webpack Gitter](https://gitter.im/webpack/webpack) instead.
7+
Please visit [GitHub Discussions](https://github.com/webpack/webpack/discussions) or [StackOverflow](https://stackoverflow.com/questions/tagged/webpack) instead.

.github/workflows/cancel.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
- name: "Checkout Repository"
1212
uses: actions/checkout@v3
1313
- name: "Dependency Review"
14-
uses: actions/dependency-review-action@v2
14+
uses: actions/dependency-review-action@v3

.github/workflows/nodejs.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
node-version: [16.x]
26+
node-version: [lts/*]
2727

2828
runs-on: ${{ matrix.os }}
2929

30+
concurrency:
31+
group: lint-${{ matrix.os }}-v${{ matrix.node-version }}-${{ github.ref }}
32+
cancel-in-progress: true
33+
3034
steps:
3135
- uses: actions/checkout@v3
3236
with:
@@ -56,11 +60,15 @@ jobs:
5660
strategy:
5761
matrix:
5862
os: [ubuntu-latest, windows-latest, macos-latest]
59-
node-version: [12.x, 14.x, 16.x, 18.x, 19.x]
63+
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
6064
webpack-version: [latest]
6165

6266
runs-on: ${{ matrix.os }}
6367

68+
concurrency:
69+
group: test-${{ matrix.os }}-v${{ matrix.node-version }}-${{ matrix.webpack-version }}-${{ github.ref }}
70+
cancel-in-progress: true
71+
6472
steps:
6573
- name: Setup Git
6674
if: matrix.os == 'windows-latest'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ npm-debug.log*
1414
/test/fixtures/modules/composes/composes-absolute.css
1515
/test/fixtures/import/import-file-protocol.css
1616
/test/fixtures/url/url-file-protocol.css
17+
/test/fixtures/url/many-urls.css
1718

1819
.DS_Store
1920
Thumbs.db

0 commit comments

Comments
 (0)