UNPKG

cypress-intercept-formdata

Version:

cypress command to work with Intercept multipart/form-data requests

12 lines (10 loc) 269 B
import { nodeResolve } from "@rollup/plugin-node-resolve"; import { babel } from "@rollup/plugin-babel"; export default { input: "src/index.js", output: { file: "lib/index.js", format: "cjs", }, plugins: [nodeResolve(), babel({ babelHelpers: "bundled" })], };