diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a48a25..4abbdb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - The callback is now passed the arguments for the most recent call to the throttled method rather than being passed the oldest arguments. This only happens when `requestAnimationFrame` is present. +### Known Issues +- `package.json` was misconfigured and didn't include the correct files ## [1.1.0] - 2016-08-23 ### Fixed diff --git a/package.json b/package.json index 797d0a9..888e3dc 100644 --- a/package.json +++ b/package.json @@ -2,11 +2,12 @@ "name": "frame-throttle", "version": "2.0.0", "description": "A lightweight way to throttle events and callbacks using requestAnimationFrame", - "main": "./dist/frame-throttle.js", - "types": "./dist/frame-throttle.d.ts", + "main": "dist/frame-throttle.js", + "types": "dist/frame-throttle.d.ts", "files": [ - "./dist/frame-throttle.js", - "./dist/frame-throttle.d.ts" + "README.md", + "dist/frame-throttle.js", + "dist/frame-throttle.d.ts" ], "scripts": { "clean": "del-cli dist",