Skip to content

Commit

Permalink
fix incorrectly configured package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Deverell committed Sep 27, 2016
1 parent 2be2b21 commit 8e72c1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8e72c1b

Please sign in to comment.