From 7b27a3c0d6bb796cef71faebfeb610ec62ad97b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Thu, 28 Jan 2021 19:49:52 +0100 Subject: [PATCH] 4.0.0 --- CHANGELOG.md | 8 ++++++++ package.json | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..993a903 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# watchify Change Log +All notable changes to this project will be documented in this file. +This project adheres to [Semantic Versioning](http://semver.org/). + +## 4.0.0 +* Update dependencies. + +This release drops support for Node.js versions older than 8.10, following the upgrade to `chokidar` 3.x. diff --git a/package.json b/package.json index b187895..0fba55f 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,12 @@ { "name": "watchify", - "version": "3.11.1", + "version": "4.0.0", "description": "watch mode for browserify builds", "main": "index.js", "bin": "bin/cmd.js", + "engines": { + "node": ">= 8.10.0" + }, "dependencies": { "anymatch": "^3.1.0", "browserify": "^17.0.0",