From 49d69c475d2861298694ded8e0e91bde5fa689c2 Mon Sep 17 00:00:00 2001 From: aidanCQ Date: Tue, 19 Dec 2023 17:40:54 +0000 Subject: [PATCH] fix(): Convert files to es modules. --- postcss.config.js | 2 +- release.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postcss.config.js b/postcss.config.js index 12a703d..2aa7205 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,4 +1,4 @@ -module.exports = { +export default { plugins: { tailwindcss: {}, autoprefixer: {}, diff --git a/release.config.js b/release.config.js index db1769a..95a0883 100644 --- a/release.config.js +++ b/release.config.js @@ -1,3 +1,3 @@ -module.exports = { +export default { branches: ["main"], };