PixelsCommander / Propeller

JavaScript library to rotate elements with mouse or touch gestures. Supports inertia and stepwise rotation. Optimized for better performance.
http://pixelscommander.com/polygon/propeller/
409 stars 58 forks source link

point main to ./src/propeller.js #21

Closed jzimmek closed 7 years ago

jzimmek commented 8 years ago

main points to non existing file index.js.

it is possible to require/import it in the application by using a full path:

import Propeller from "Propeller/src/propeller"

by pointing main to the correct file it becomes more ideomatic to use:

import Propeller from "Propeller"