Skip to content

Commit dbf037f

Browse files
committed
chore: bump version
(cherry picked from commit 1b30361)
1 parent f7ea042 commit dbf037f

File tree

7 files changed

+30
-2
lines changed

7 files changed

+30
-2
lines changed

.changeset/cold-nails-wave.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"react-sketch-canvas": patch
3+
---
4+
5+
- Add option to disable canvas (readOnly prop)
6+
- Remove cypress tests
7+
- Add playwright component tests

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"tsconfig": "0.0.0"
1010
},
1111
"changesets": [
12+
"cold-nails-wave",
1213
"famous-onions-brush",
1314
"serious-bobcats-burn",
1415
"shy-ghosts-poke",

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
"dev": "turbo run dev --parallel --no-cache",
1212
"lint": "turbo run lint",
1313
"test": "turbo run build test",
14+
"ci:test": "turbo run build ci:test",
1415
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
1516
"ci:build": "cp README.md packages/react-sketch-canvas/ && pnpm --filter react-sketch-canvas ci:build",
16-
"publish-packages": "pnpm test && pnpm ci:build && changeset version && changeset publish"
17+
"release": "pnpm test && pnpm ci:build && changeset version && changeset publish",
18+
"pre-release": "pnpm ci:test && pnpm ci:build && changeset && changeset publish"
19+
1720
},
1821
"devDependencies": {
1922
"eslint-config-custom": "workspace:*",

packages/react-sketch-canvas/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 7.0.0-next.4
4+
5+
### Patch Changes
6+
7+
- - Add option to disable canvas (readOnly prop)
8+
- Remove cypress tests
9+
- Add playwright component tests
10+
311
## 7.0.0-next.3
412

513
### Patch Changes

packages/react-sketch-canvas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-sketch-canvas",
3-
"version": "7.0.0-next.3",
3+
"version": "7.0.0-next.4",
44
"description": "react-sketch-canvas - Freehand vector drawing tool for React using SVG as canvas",
55
"author": "Vinoth Pandian",
66
"homepage": "https://vinoth.info/react-sketch-canvas",

packages/tests/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "tests",
33
"version": "1.0.0",
44
"description": "",
5+
"private": true,
56
"main": "index.js",
67
"scripts": {
78
"dev:test": "playwright test -c playwright-ct.config.ts --ui",

turbo.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919
"dev:test": {
2020
"cache": false
2121
},
22+
"ci:test": {
23+
"dependsOn": [
24+
"^build"
25+
],
26+
"outputs": [
27+
"dist/**"
28+
]
29+
},
2230
"test": {
2331
"dependsOn": [
2432
"^build"

0 commit comments

Comments
 (0)