Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
(cherry picked from commit 1b30361)
  • Loading branch information
vinothpandian committed Feb 18, 2024
1 parent f7ea042 commit dbf037f
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .changeset/cold-nails-wave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"react-sketch-canvas": patch
---

- Add option to disable canvas (readOnly prop)
- Remove cypress tests
- Add playwright component tests
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"tsconfig": "0.0.0"
},
"changesets": [
"cold-nails-wave",
"famous-onions-brush",
"serious-bobcats-burn",
"shy-ghosts-poke",
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
"dev": "turbo run dev --parallel --no-cache",
"lint": "turbo run lint",
"test": "turbo run build test",
"ci:test": "turbo run build ci:test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ci:build": "cp README.md packages/react-sketch-canvas/ && pnpm --filter react-sketch-canvas ci:build",
"publish-packages": "pnpm test && pnpm ci:build && changeset version && changeset publish"
"release": "pnpm test && pnpm ci:build && changeset version && changeset publish",
"pre-release": "pnpm ci:test && pnpm ci:build && changeset && changeset publish"

},
"devDependencies": {
"eslint-config-custom": "workspace:*",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-sketch-canvas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 7.0.0-next.4

### Patch Changes

- - Add option to disable canvas (readOnly prop)
- Remove cypress tests
- Add playwright component tests

## 7.0.0-next.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-sketch-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-sketch-canvas",
"version": "7.0.0-next.3",
"version": "7.0.0-next.4",
"description": "react-sketch-canvas - Freehand vector drawing tool for React using SVG as canvas",
"author": "Vinoth Pandian",
"homepage": "https://vinoth.info/react-sketch-canvas",
Expand Down
1 change: 1 addition & 0 deletions packages/tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "tests",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"dev:test": "playwright test -c playwright-ct.config.ts --ui",
Expand Down
8 changes: 8 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
"dev:test": {
"cache": false
},
"ci:test": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"test": {
"dependsOn": [
"^build"
Expand Down

0 comments on commit dbf037f

Please sign in to comment.