Merge pull request #269 from rishi-raj-jain/main

fix: [DOC-296] Add changesets for automatic release versioning
This commit is contained in:
Lucas Smith
2023-08-18 18:35:19 +10:00
committed by GitHub
5 changed files with 3676 additions and 10 deletions

8
.changeset/README.md Normal file
View File

@ -0,0 +1,8 @@
# Changesets
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

9
.changeset/config.json Normal file
View File

@ -0,0 +1,9 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch"
}

View File

@ -38,3 +38,11 @@ You can build the project with:
```bash
npm run build
```
### Making a Pull Request
When making a pull request, be sure to add a changeset when something has changed with Documenso.
```shell
npm run changeset
```

3657
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -2,6 +2,9 @@
"name": "documenso-monorepo",
"version": "0.0.0",
"scripts": {
"changeset": "changeset",
"publish": "changeset publish",
"version": "changeset version",
"dev": "turbo run dev --filter=web",
"build": "turbo run build --filter=web",
"start": "turbo run start --filter=web",
@ -40,6 +43,7 @@
"zod": "^3.21.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tailwindcss/forms": "^0.5.3",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/bcryptjs": "^2.4.2",