Skip to content

Commit c124ae0

Browse files
committed
fix changesets
1 parent d95f1db commit c124ae0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
const { default: baseFunctions } = require("@changesets/changelog-github")
1+
import baseFunctions from "@changesets/changelog-github"
22

33
/*
44
* This is just a small wrapper around the base changelog-github formatter that
55
* removes "Thanks @Beeequeue!" as it would be on every changelog entry
66
*/
7-
exports.default = {
7+
export default {
88
getDependencyReleaseLine: baseFunctions.getDependencyReleaseLine,
99
getReleaseLine: async (...options) => {
1010
const line = await baseFunctions.getReleaseLine(...options)

.changeset/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/config@1.7.0/schema.json",
2+
"$schema": "https://unpkg.com/@changesets/config@4.0.0-next.1/schema.json",
33
"access": "public",
44
"baseBranch": "main",
55
"changelog": [
6-
"./changelog-formatter.cjs",
6+
"./.changeset/changelog-formatter.js",
77
{
88
"repo": "BeeeQueue/esbuild-cf-functions-plugin"
99
}

0 commit comments

Comments
 (0)