Skip to content

Commit b5a06bb

Browse files
authored
Merge pull request #309 from oddbird/dependabot/npm_and_yarn/npm-major-upgrades-9b5b50e227
Bump stylelint-config-standard-scss from 14.0.0 to 15.0.1 in the npm-major-upgrades group
2 parents c0efb98 + 9c8c3af commit b5a06bb

File tree

6 files changed

+706
-1015
lines changed

6 files changed

+706
-1015
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
node: ['18', 'lts/*']
13+
node: ['20', 'lts/*']
1414
steps:
1515
- uses: actions/checkout@v4
1616
- run: corepack enable

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.nyc_output/
44
.vscode/
55
.yarn/
6+
.yarnrc.yml
67
ENV/
78
coverage/
89
dist/

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ nodeLinker: node-modules
77
packageExtensions:
88
markdown-it-anchor@*:
99
peerDependenciesMeta:
10-
'@types/markdown-it':
10+
"@types/markdown-it":
1111
optional: true

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# True Changelog
22

3+
## UNRELEASED
4+
5+
- BREAKING: Drop support for node < 20
6+
- INTERNAL: Update dependencies
7+
38
## 8.1.0 (10/02/24)
49

510
- FEATURE: If True `sass` option is not specified, True will automatically

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"README.md"
3939
],
4040
"engines": {
41-
"node": ">=18"
41+
"node": ">=20"
4242
},
4343
"scripts": {
4444
"test:src": "jest",
@@ -62,7 +62,7 @@
6262
"prepack": "yarn run release"
6363
},
6464
"dependencies": {
65-
"@adobe/css-tools": "^4.4.2",
65+
"@adobe/css-tools": "^4.4.3",
6666
"jest-diff": "^29.7.0",
6767
"lodash": "^4.17.21"
6868
},
@@ -79,36 +79,36 @@
7979
}
8080
},
8181
"devDependencies": {
82-
"@babel/core": "^7.27.1",
82+
"@babel/core": "^7.27.4",
8383
"@babel/eslint-parser": "^7.27.1",
84-
"@babel/preset-env": "^7.27.1",
84+
"@babel/preset-env": "^7.27.2",
8585
"@babel/preset-typescript": "^7.27.1",
86-
"@eslint/js": "^9.25.1",
87-
"@types/lodash": "^4.17.16",
86+
"@eslint/js": "^9.28.0",
87+
"@types/lodash": "^4.17.17",
8888
"babel-jest": "^29.7.0",
8989
"chai": "^4.5.0",
90-
"eslint": "^9.25.1",
91-
"eslint-config-prettier": "^10.1.2",
92-
"eslint-import-resolver-typescript": "^4.3.4",
90+
"eslint": "^9.28.0",
91+
"eslint-config-prettier": "^10.1.5",
92+
"eslint-import-resolver-typescript": "^4.4.2",
9393
"eslint-plugin-import": "^2.31.0",
94-
"eslint-plugin-jest": "^28.11.0",
94+
"eslint-plugin-jest": "^28.12.0",
9595
"eslint-plugin-jest-dom": "^5.5.0",
9696
"eslint-plugin-simple-import-sort": "^12.1.1",
97-
"globals": "^16.0.0",
97+
"globals": "^16.2.0",
9898
"jest": "^29.7.0",
9999
"jest-environment-node-single-context": "^29.4.0",
100-
"mocha": "^11.2.2",
100+
"mocha": "^11.5.0",
101101
"npm-run-all": "^4.1.5",
102-
"postcss": "^8.5.3",
102+
"postcss": "^8.5.4",
103103
"prettier": "^3.5.3",
104-
"sass": "^1.87.0",
105-
"sass-embedded": "^1.87.0",
104+
"sass": "^1.89.1",
105+
"sass-embedded": "^1.89.1",
106106
"sassdoc": "^2.7.4",
107107
"sassdoc-theme-herman": "^6.0.2",
108-
"stylelint": "^16.19.1",
109-
"stylelint-config-standard-scss": "^14.0.0",
108+
"stylelint": "^16.20.0",
109+
"stylelint-config-standard-scss": "^15.0.1",
110110
"typescript": "^5.8.3",
111-
"typescript-eslint": "^8.31.1"
111+
"typescript-eslint": "^8.33.0"
112112
},
113113
"main": "./lib/index.js",
114114
"types": "./lib/index.d.ts",
@@ -123,5 +123,5 @@
123123
"sassDir": "./sass/",
124124
"exports": false
125125
},
126-
"packageManager": "yarn@4.8.1"
126+
"packageManager": "yarn@4.9.1"
127127
}

0 commit comments

Comments
 (0)