Skip to content

Commit cd01a35

Browse files
authored
Upgrade dependencies (#778)
1 parent 703e24a commit cd01a35

File tree

4 files changed

+582
-1472
lines changed

4 files changed

+582
-1472
lines changed

.stylelintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
assets/styles/_sprite.scss

.stylelintrc

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
11
{
2-
"extends": [
3-
"stylelint-config-recommended"
4-
],
5-
"plugins": [
6-
"stylelint-no-unsupported-browser-features"
7-
],
2+
"extends": ["stylelint-config-recommended", "stylelint-config-standard-scss"],
3+
"plugins": ["stylelint-scss", "stylelint-no-unsupported-browser-features"],
84
"rules": {
9-
"at-rule-no-unknown": [
10-
true,
11-
{
12-
"ignoreAtRules": [
13-
"function",
14-
"if",
15-
"each",
16-
"include",
17-
"mixin",
18-
"for",
19-
"while",
20-
"else",
21-
"return"
22-
]
23-
}
24-
]
5+
"string-quotes": "single",
6+
"at-rule-no-unknown": null,
7+
"scss/at-rule-no-unknown": true
258
}
269
}

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-mpa",
3-
"version": "3.9.0",
3+
"version": "3.10.0",
44
"description": "Multi page app setup with webpack",
55
"scripts": {
66
"build": "webpack --mode=production",
@@ -29,7 +29,7 @@
2929
},
3030
"license": "MIT",
3131
"dependencies": {
32-
"itscss": "1.6.0"
32+
"itscss": "2.0.0"
3333
},
3434
"devDependencies": {
3535
"@babel/core": "7.15.8",
@@ -64,9 +64,11 @@
6464
"sass": "1.43.3",
6565
"sass-loader": "12.2.0",
6666
"spritesh": "1.2.1",
67-
"stylelint": "13.13.1",
68-
"stylelint-config-recommended": "5.0.0",
67+
"stylelint": "14.0.0",
68+
"stylelint-config-recommended": "6.0.0",
69+
"stylelint-config-standard-scss": "2.0.0",
6970
"stylelint-no-unsupported-browser-features": "5.0.2",
71+
"stylelint-scss": "4.0.0",
7072
"svgo": "2.7.0",
7173
"webpack": "5.59.1",
7274
"webpack-cli": "4.9.1",

0 commit comments

Comments
 (0)