From 810eeb667d8c054aa4047d9c3bfa9d222536e30f Mon Sep 17 00:00:00 2001 From: Austin Dase <59173272+adase11@users.noreply.github.com> Date: Mon, 7 Oct 2024 19:52:47 -0400 Subject: [PATCH] cjs --- package.json | 4 ++-- scripts/{post-export.js => post-export.cjs} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{post-export.js => post-export.cjs} (100%) diff --git a/package.json b/package.json index ce0b2ce9b..a20b16c41 100644 --- a/package.json +++ b/package.json @@ -13,10 +13,10 @@ }, "scripts": { "dev": "next dev", - "build": "next lint --fix && next build && node scripts/post-export.js", + "build": "next lint --fix && next build && node scripts/post-export.cjs", "start": "next lint --fix && next build && next start", "lint": "next lint --fix", - "predeploy": "next build && node scripts/post-export.js", + "predeploy": "next build && node scripts/post-export.cjs", "test": "" }, "dependencies": { diff --git a/scripts/post-export.js b/scripts/post-export.cjs similarity index 100% rename from scripts/post-export.js rename to scripts/post-export.cjs