From 410fa1012bdf53f84c057dd50b4554c384de9590 Mon Sep 17 00:00:00 2001 From: Ben Siggery Date: Fri, 9 Feb 2024 16:19:13 +0000 Subject: [PATCH] convert to esm --- .changeset/changelog-config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.changeset/changelog-config.js b/.changeset/changelog-config.js index dc4fc64cbb..f40743dfc3 100644 --- a/.changeset/changelog-config.js +++ b/.changeset/changelog-config.js @@ -1,9 +1,9 @@ // @ts-check -const {config} = require('dotenv'); -const { +import {config} from 'dotenv'; +import { getInfo, getInfoFromPullRequest, -} = require('@changesets/get-github-info'); +} from '@changesets/get-github-info'; config(); @@ -109,4 +109,4 @@ const changelogFunctions = { }, }; -module.exports = changelogFunctions; \ No newline at end of file +export { changelogFunctions };