Skip to content

Commit

Permalink
chore: add release command
Browse files Browse the repository at this point in the history
  • Loading branch information
ShookLyngs committed Mar 6, 2024
1 parent 8c715b9 commit e6d5238
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"clean": "turbo run clean",
"clean:packages": "turbo run clean --filter=./packags/*",
"clean:dependencies": "pnpm clean:sub-dependencies && rimraf node_modules",
"clean:sub-dependencies": "rimraf packages/**/node_modules apps/**/node_modules"
"clean:sub-dependencies": "rimraf packages/**/node_modules apps/**/node_modules",
"release:packages": "pnpm run clean:packages && pnpm run build:packages && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/btc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"scripts": {
"test": "vitest --watch=false",
"build": "pnpm run clean && tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"lint": "prettier --check '{src,tests}/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "prettier --write '{src,tests}/**/*.{js,jsx,ts,tsx}'",
"clean": "pnpm run clean:cache & pnpm run clean:build",
Expand Down

0 comments on commit e6d5238

Please sign in to comment.