Files
Photography_Form_Front_End/node_modules/@wry/equality/rollup.config.js
2025-05-15 13:35:49 +10:00

22 lines
428 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { build } from "../../shared/rollup.config.js";
// This package doesn't use the lib/es5 directory, so we need to override the
// default export from ../../shared/rollup.config.js.
export default [
build(
"lib/index.js",
"lib/bundle.cjs",
"cjs"
),
build(
"lib/tests/main.js",
"lib/tests/bundle.js",
"esm"
),
build(
"lib/tests/main.js",
"lib/tests/bundle.cjs",
"cjs"
),
];