Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limit Chokidar's lower bound to 3.0.0 #1279

Merged
merged 3 commits into from Apr 15, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,13 @@

* Allow the null safety release of args and watcher.

### JavaScript API

* Drop support for Chokidar 2.x. This version was incompatible with Node 14, but
due to shortcomings in npm's version resolver sometimes still ended up
installed anyway. Only declaring support for 3.0.0 should ensure compatibility
going forward.

## 1.32.8

* Update chokidar version for Node API tests.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
],
"name": "sass",
"devDependencies": {
"chokidar": ">=2.0.0 <4.0.0",
"chokidar": ">=3.0.0 <4.0.0",
"fibers": ">=1.0.0 <5.0.0",
"intercept-stdout": "^0.1.2",
"node-sass": "^4.11.0"
Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Expand Up @@ -17,7 +17,7 @@
"node": ">=8.9.0"
},
"dependencies": {
"chokidar": ">=2.0.0 <4.0.0"
"chokidar": ">=3.0.0 <4.0.0"
},
"keywords": ["style", "scss", "sass", "preprocessor", "css"]
}
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,5 +1,5 @@
name: sass
version: 1.32.9-dev
version: 1.32.9
description: A Sass implementation in Dart.
author: Sass Team
homepage: https://github.com/sass/dart-sass
Expand Down