diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a476a..b86e8bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## [1.2.3] - 2022-12-23 + +- Fixed CLI not being executed in some versions of Node.js < v16. + ## [1.2.2] - 2022-05-26 - Fixed edge case computing cubic Bézier curves bounding boxes. diff --git a/package.json b/package.json index 99191cf..83d5b9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svg-path-bbox", - "version": "1.2.2", + "version": "1.2.3", "description": "Compute bounding boxes of SVG paths.", "keywords": [ "svg", @@ -13,7 +13,7 @@ "types": "dist/index.d.ts", "type": "commonjs", "bin": { - "svg-path-bbox": "src/cli.cjs" + "svg-path-bbox": "src/cli.js" }, "scripts": { "coveralls": "cat ./tests/coverage/lcov.info | coveralls",