UNPKG

css-keyframer

Version:

Dynamic css animation keyframes Manipulation library.

34 lines (31 loc) 591 B
import nodeResolve from "rollup-plugin-node-resolve" import commonjs from "rollup-plugin-commonjs" import babel from "rollup-plugin-babel" const pkg = require("./package.json"); const banner = ` /*! * ${pkg.name} * ${pkg.description} * * @author ${pkg.author} * @license ${pkg.license} * @version ${pkg.version} */ `; export default { banner, moduleName: "CSSKeyframer", format: "umd", plugins: [ nodeResolve({ jsnext: true, main: true }), commonjs({ include: "node_modules/**" }), babel({ exclude: "node_modules/**" }) ] }