Skip to content

Commit

Permalink
Build contracts before test
Browse files Browse the repository at this point in the history
  • Loading branch information
d0rich committed Nov 12, 2023
1 parent 2a96213 commit 6cfd0ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ node_modules
.output
.env
dist
*.md
build
*.md
4 changes: 2 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"private": true,
"scripts": {
"build": "blueprint build --all",
"test": "jest",
"bp:start": "blueprint run",
"bp:build": "blueprint build",
"test": "jest"
"bp:build": "blueprint build"
},
"devDependencies": {
"@ton-community/blueprint": "^0.12.0",
Expand Down
6 changes: 6 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@
"dependsOn": ["^generate"],
"outputs": ["dist"]
},
"@d0rich/contracts#build": {
"outputs": ["dist"]
},
"typecheck": {},
"test": {},
"@d0rich/contracts#test": {
"dependsOn": ["@d0rich/contracts#build"]
},
"dev": {
"cache": false,
"persistent": true
Expand Down

0 comments on commit 6cfd0ea

Please sign in to comment.