Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['18', 'lts/*']
node: ['20', 'lts/*']
steps:
- uses: actions/checkout@v4
- run: corepack enable
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.nyc_output/
.vscode/
.yarn/
.yarnrc.yml
ENV/
coverage/
dist/
Expand Down
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ nodeLinker: node-modules
packageExtensions:
markdown-it-anchor@*:
peerDependenciesMeta:
'@types/markdown-it':
"@types/markdown-it":
optional: true
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# True Changelog

## UNRELEASED

- BREAKING: Drop support for node < 20
- INTERNAL: Update dependencies

## 8.1.0 (10/02/24)

- FEATURE: If True `sass` option is not specified, True will automatically
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"README.md"
],
"engines": {
"node": ">=18"
"node": ">=20"
},
"scripts": {
"test:src": "jest",
Expand All @@ -62,7 +62,7 @@
"prepack": "yarn run release"
},
"dependencies": {
"@adobe/css-tools": "^4.4.2",
"@adobe/css-tools": "^4.4.3",
"jest-diff": "^29.7.0",
"lodash": "^4.17.21"
},
Expand All @@ -79,36 +79,36 @@
}
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.25.1",
"@types/lodash": "^4.17.16",
"@eslint/js": "^9.28.0",
"@types/lodash": "^4.17.17",
"babel-jest": "^29.7.0",
"chai": "^4.5.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jest": "^28.12.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"mocha": "^11.2.2",
"mocha": "^11.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.3",
"postcss": "^8.5.4",
"prettier": "^3.5.3",
"sass": "^1.87.0",
"sass-embedded": "^1.87.0",
"sass": "^1.89.1",
"sass-embedded": "^1.89.1",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.2",
"stylelint": "^16.19.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint": "^16.20.0",
"stylelint-config-standard-scss": "^15.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
"typescript-eslint": "^8.33.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand All @@ -123,5 +123,5 @@
"sassDir": "./sass/",
"exports": false
},
"packageManager": "yarn@4.8.1"
"packageManager": "yarn@4.9.1"
}
Loading