Return smoothed drag end velocity with event

This commit is contained in:
Jess Telford 2016-09-28 22:42:51 +10:00
parent 691dc21a4d
commit c7d1fe0c0c
7 changed files with 177 additions and 12 deletions

12
rollup.config.js Normal file
View file

@ -0,0 +1,12 @@
module.exports = {
plugins: [
require('rollup-plugin-node-resolve')({
jsnext: true,
main: true,
browser: true,
}),
require('rollup-plugin-commonjs')({
include: 'node_modules/**',
}),
],
};