react-moveable
Version:
A React Component that create Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable.
22 lines (19 loc) • 437 B
JavaScript
import builder from "@daybrush/builder";
const defaultOptions = {
tsconfig: "tsconfig.build.json",
};
export default builder([{
...defaultOptions,
input: "src/react-moveable/index.ts",
output: "./dist/moveable.esm.js",
visualizer: true,
format: "es",
exports: "named",
},
{
...defaultOptions,
input: "src/react-moveable/index.umd.ts",
output: "./dist/moveable.cjs.js",
format: "cjs",
},
]);