Skip to content

Commit ac8210f

Browse files
committed
Release 4.0.0.
1 parent da7f03b commit ac8210f

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Made for [Brunch](https://brunch.io/) in 2012,
3232
it is now used in [~30 million repositories](https://www.npmjs.com/browse/depended/chokidar) and
3333
has proven itself in production environments.
3434

35-
**Aug 2024 update:** v4 is out! It decreases dependency count from 13 to 1, removes
35+
**Sep 2024 update:** v4 is out! It decreases dependency count from 13 to 1, removes
3636
support for globs, adds support for ESM / Common.js modules, and bumps minimum node.js version from v8 to v14.
3737

3838
## Getting started
@@ -253,11 +253,11 @@ execute a command on each change, or get a stdio stream of change events.
253253

254254
## Changelog
255255

256-
- **v4 (Aug 28, 2024):** Remove glob support and bundled fsevents: decrease dependency count from 13 to 1. Rewrite in typescript. Bumps minimum node.js requirement to v14+
257-
- **v3 (Apr 30, 2019):** massive CPU & RAM consumption improvements; reduces deps / package size by a factor of 17x and bumps Node.js requirement to v8.16+.
258-
- **v2 (Dec 29, 2017):** Globs are now posix-style-only. Tons of bugfixes.
259-
- **v1 (Apr 7, 2015):** Glob support, symlink support, tons of bugfixes. Node 0.8+ is supported
260-
- **v0.1 (Apr 20, 2012):** Initial release, extracted from [Brunch](https://github.com/brunch/brunch/blob/9847a065aea300da99bd0753f90354cde9de1261/src/helpers.coffee#L66)
256+
- **v4 (Sep 2024):** remove glob support and bundled fsevents. Decrease dependency count from 13 to 1. Rewrite in typescript. Bumps minimum node.js requirement to v14+
257+
- **v3 (Apr 2019):** massive CPU & RAM consumption improvements; reduces deps / package size by a factor of 17x and bumps Node.js requirement to v8.16+.
258+
- **v2 (Dec 2017):** globs are now posix-style-only. Tons of bugfixes.
259+
- **v1 (Apr 2015):** glob support, symlink support, tons of bugfixes. Node 0.8+ is supported
260+
- **v0.1 (Apr 2012):** Initial release, extracted from [Brunch](https://github.com/brunch/brunch/blob/9847a065aea300da99bd0753f90354cde9de1261/src/helpers.coffee#L66)
261261

262262
Details in [`.github/full_changelog.md`](.github/full_changelog.md).
263263

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
{
22
"name": "chokidar",
33
"description": "Minimal and efficient cross-platform file watching library",
4-
"version": "4.0.0-beta",
4+
"version": "4.0.0",
55
"homepage": "https://github.com/paulmillr/chokidar",
66
"author": "Paul Miller (https://paulmillr.com)",
7-
"engines": {
8-
"node": ">= 14.16.0"
9-
},
107
"files": [
118
"index.js",
129
"index.d.ts",
@@ -31,7 +28,6 @@
3128
"require": "./handler.js"
3229
}
3330
},
34-
"sideEffects": false,
3531
"dependencies": {
3632
"readdirp": "^4.0.1"
3733
},
@@ -46,6 +42,10 @@
4642
"typescript": "5.5.2",
4743
"upath": "2.0.1"
4844
},
45+
"sideEffects": false,
46+
"engines": {
47+
"node": ">= 14.16.0"
48+
},
4949
"repository": {
5050
"type": "git",
5151
"url": "git+https://github.com/paulmillr/chokidar.git"

0 commit comments

Comments
 (0)