diff --git a/.changeset/README.md b/.changeset/README.md new file mode 100644 index 0000000..fa18076 --- /dev/null +++ b/.changeset/README.md @@ -0,0 +1,9 @@ +# Changesets + +To add changeset run: + +```bash +npx changeset +``` + +in the root of the project. This will create a new changeset in the `.changeset` folder. diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 0000000..3569201 --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json", + "changelog": "@changesets/cli/changelog", + "commit": false, + "fixed": [], + "ignore": [], + "linked": [], + "access": "public", + "baseBranch": "main", + "updateInternalDependencies": "patch", + "privatePackages": { + "version": true, + "tag": true + } +}