Description: fix for rollup 3
Author: Yadd <yadd@debian.org>
Bug-Debian: https://bugs.debian.org/1022618
Forwarded: not-needed
Last-Update: 2022-10-26

--- a/rollup.config.js
+++ b/rollup.config.js
@@ -1,9 +1,9 @@
 'use strict';
 
-import buble from '@rollup/plugin-buble';
-import { terser } from 'rollup-plugin-terser';
-import json from '@rollup/plugin-json';
-import * as pkg from './package.json';
+const buble = require('@rollup/plugin-buble');
+const { terser } = require('rollup-plugin-terser');
+const json = require('@rollup/plugin-json');
+const pkg = require('./package.json');
 
 const MIN = process.env.MIN === 'true' || false; // true/false|unset
 const { FORMAT } = process.env; // JS umd|iife|esm
@@ -47,7 +47,7 @@
   OUTPUT.name = 'CSSMatrix';
 }
 
-export default [
+module.exports = [
   {
     input: INPUTFILE,
     output: OUTPUT,
