Add changeset (#567)

* add lask for packages

* Add turbo

* remove custom scripts

* update turbo scripts

* Improve scripts, update changelogs

* update action to use turbo

* Update .gitignore

* Update main.yml

* Update main.yml

* Update main.yml

* Add docs

* add clean

* Add changesets

* Add changeset
This commit is contained in:
Steve Ruiz 2022-02-08 11:45:11 +00:00 committed by GitHub
parent e1fb9a8250
commit 9619e3be0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 749 additions and 38 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)

10
.changeset/config.json Normal file
View file

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

View file

@ -25,8 +25,8 @@
"@sentry/react": "^6.13.2",
"@sentry/tracing": "^6.13.2",
"@stitches/react": "^1.2.5",
"@tldraw/core": "^1.6.1",
"@tldraw/tldraw": "^1.6.1",
"@tldraw/core": "^1.7.0",
"@tldraw/tldraw": "^1.7.0",
"@types/next-auth": "^3.15.0",
"aws-sdk": "^2.1053.0",
"chrome-aws-lambda": "10.1.0",

View file

@ -26,7 +26,9 @@
"start:www": "turbo run start --parallel & cd apps/www && yarn dev",
"start:electron": "turbo run start:electron --stream --parallel",
"start:vscode": "code apps/vscode/extension & turbo run start:vscode --parallel; ",
"publish:patch": "yarn build:packages && yarn test && turbo publish",
"version": "yarn changeset version",
"publish": "yarn changeset publish",
"changeset": "changeset",
"fix:style": "yarn run prettier ./packages/core/src --write && yarn run prettier ./packages/tldraw/src --write",
"turbo": "turbo",
"test": "turbo run test --stream",
@ -75,5 +77,8 @@
"pre-push": "fix:style && eslint && test"
}
},
"packageManager": "yarn@1.22.17"
"packageManager": "yarn@1.22.17",
"dependencies": {
"@changesets/cli": "^2.20.0"
}
}

View file

@ -2,7 +2,15 @@
## 1.7.0
- Simplifies monorepo and dependencies.
### Minor Changes
- Update dependencies and monorepo.
### Patch Changes
- Updated dependencies
- @tldraw/intersect@1.7.0
- @tldraw/vec@1.7.0
## 1.5.0

View file

@ -1,5 +1,5 @@
{
"version": "1.6.1",
"version": "1.7.0",
"name": "@tldraw/core",
"description": "The tldraw core renderer and utilities.",
"author": "@steveruizok",
@ -37,8 +37,8 @@
"docs": "typedoc"
},
"dependencies": {
"@tldraw/intersect": "^1.6.1",
"@tldraw/vec": "^1.6.1",
"@tldraw/intersect": "^1.7.0",
"@tldraw/vec": "^1.7.0",
"@use-gesture/react": "^10.2.4",
"mobx-react-lite": "^3.2.3",
"resize-observer-polyfill": "^1.5.1"

View file

@ -2,7 +2,9 @@
## 1.7.0
- Simplifies monorepo and dependencies.
### Minor Changes
- Update dependencies and monorepo.
## 1.4.3

View file

@ -1,5 +1,5 @@
{
"version": "1.6.1",
"version": "1.7.0",
"name": "@tldraw/curve",
"description": "Curve utilities for TLDraw and maybe you, too.",
"author": "@steveruizok",

View file

@ -2,7 +2,14 @@
## 1.7.0
- Simplifies monorepo and dependencies.
### Minor Changes
- Update dependencies and monorepo.
### Patch Changes
- Updated dependencies
- @tldraw/vec@1.7.0
## 1.4.3

View file

@ -1,5 +1,5 @@
{
"version": "1.6.1",
"version": "1.7.0",
"name": "@tldraw/intersect",
"description": "2D intersection utilities for TLDraw and maybe you, too.",
"author": "@steveruizok",
@ -33,7 +33,11 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@tldraw/vec": "^1.6.1"
"@tldraw/vec": "^1.7.0"
},
"devDependencies": {
"@tldraw/vec": "*",
"lask": "^0.0.29"
},
"devDependencies": {
"@tldraw/vec": "*",

View file

@ -2,7 +2,16 @@
## 1.7.0
- Simplifies monorepo and dependencies.
### Minor Changes
- Update dependencies and monorepo.
### Patch Changes
- Updated dependencies
- @tldraw/core@1.7.0
- @tldraw/intersect@1.7.0
- @tldraw/vec@1.7.0
## 1.6.1

View file

@ -1,6 +1,6 @@
{
"name": "@tldraw/tldraw",
"version": "1.6.1",
"version": "1.7.0",
"description": "A tiny little drawing app (editor)",
"author": "@steveruizok",
"repository": {
@ -49,9 +49,9 @@
"@radix-ui/react-radio-group": "^0.1.4",
"@radix-ui/react-tooltip": "^0.1.6",
"@stitches/react": "^1.2.6",
"@tldraw/core": "^1.6.1",
"@tldraw/intersect": "^1.6.1",
"@tldraw/vec": "^1.6.1",
"@tldraw/core": "^1.7.0",
"@tldraw/intersect": "^1.7.0",
"@tldraw/vec": "^1.7.0",
"idb-keyval": "^6.1.0",
"perfect-freehand": "^1.0.16",
"react-hotkey-hook": "^1.0.2",

View file

@ -2,7 +2,9 @@
## 1.7.0
- Simplifies monorepo and dependencies.
### Minor Changes
- Update dependencies and monorepo.
## 1.6.1

View file

@ -1,5 +1,5 @@
{
"version": "1.6.1",
"version": "1.7.0",
"name": "@tldraw/vec",
"description": "2D vector utilities for TLDraw and maybe you, too.",
"author": "@steveruizok",

692
yarn.lock

File diff suppressed because it is too large Load diff