From 16d6711eb1b97658438e946fe6a36b1dc6512de9 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Thu, 15 Apr 2021 15:49:49 -0700 Subject: [PATCH] Limit Chokidar's lower bound to 3.0.0 (#1279) There's no reason we *should* have to do this, since we do declare support for Chokidar 3.0.0 and npm *should* just install the latest available version that matches the constraint. But in practice it doesn't for some reason, so I guess we'll narrow the constraint to work around that. See #863 --- CHANGELOG.md | 7 +++++++ pubspec.yaml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eb975c1a..93bb667f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ * Fix a typo in a deprecation warning. +### 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. + ### Dart API * Allow the null safety release of args and watcher. diff --git a/pubspec.yaml b/pubspec.yaml index 722cd36e8..39dae0591 100644 --- a/pubspec.yaml +++ b/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