From 8e72c1b803776f5e48faf99138d4f73fdb36071f Mon Sep 17 00:00:00 2001 From: Mike Deverell Date: Mon, 26 Sep 2016 21:58:35 -0400 Subject: [PATCH] fix incorrectly configured package.json --- CHANGELOG.md | 2 ++ package.json | 9 +++++---- 2 files changed, 7 insertions(+), 4 deletions(-) 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",