Skip to content

Commit

Permalink
chore: fix shipjs commands
Browse files Browse the repository at this point in the history
  • Loading branch information
opichon committed Aug 27, 2024
1 parent 431b8c2 commit ed5b68b
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 4 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ outdated:

publish:
@printf "\033[0;32m>>> Publish packages\033[0m\n"
npm run publish
npx shipjs trigger

release:
@printf "\033[0;32m>>> Prepare packages for release\033[0m\n"
npm run release
npx shipjs prepare

sort-package:
@printf "\033[0;32m>>> Format package.json\033[0m\n"
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"publish": "npx shipjs trigger",
"release": "npx shipjs prepare",
"sort-package": "npx sort-package-json",
"pretest": "eslint .",
"test": "jest --passWithNoTests"
Expand Down
40 changes: 40 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"lint": {
"env": ["NODE_ENV"],
"outputs": []
},
"lint:fix": {
"outputs": []
},
"publish": {
"outputs": []
},
"release": {
"outputs": []
},
"sort-package": {
"outputs": []
},
"test": {
"outputs": []
},
"test:ci": {
"outputs": []
},
"test:integration": {
"outputs": []
},
"test:unit": {
"outputs": []
},
"typecheck": {
"outputs": []
}
}
}

0 comments on commit ed5b68b

Please sign in to comment.