Skip to content

Commit

Permalink
chore: bump package to 1.2.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermerodz committed Mar 12, 2024
1 parent 023f1e9 commit e956d1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"type-check": "turbo run type-check",
"lint:lib": "turbo run lint --filter=input-otp",
"format": "prettier --write .",
"prerelease": "run-s test build:lib",
"release": "cd ./packages/input-otp && cp ../../README.md . && npm publish && rimraf ./README.md && cd ../.."
"release": "run-s test build:lib && cd ./packages/input-otp && cp ../../README.md . && pnpm release && rimraf ./README.md && cd ../..",
"release:beta": "run-s test build:lib && cd ./packages/input-otp && cp ../../README.md . && pnpm release:beta && rimraf ./README.md && cd ../.."
},
"prettier": {
"tabWidth": 2,
Expand Down
6 changes: 4 additions & 2 deletions packages/input-otp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "input-otp",
"version": "1.1.0",
"version": "1.2.0-beta.0",
"author": "Guilherme Rodz <g@rodz.dev>",
"description": "One-time password input component for React.",
"license": "MIT",
Expand Down Expand Up @@ -47,7 +47,9 @@
"lint:format": "prettier --check \"src/**/*.ts\"",
"lint:format:fix": "prettier --check \"src/**/*.ts\" --write",
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"format": "prettier --write ."
"format": "prettier --write .",
"release": "npm publish",
"release:beta": "npm publish --tag beta"
},
"eslintConfig": {
"root": true,
Expand Down

0 comments on commit e956d1c

Please sign in to comment.