Skip to content

Commit

Permalink
run build when you open project
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Donham committed Apr 30, 2024
1 parent 30eb60a commit a8b81ce
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"luxass.tsup-problem-matchers",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
5 changes: 4 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"problemMatcher": ["$tsup-esm-watch", "$tsup-dts-watch"],
"isBackground": true,
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "never"
},
Expand Down
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
"scripts": {
"watch": "pnpm -r run watch"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}

0 comments on commit a8b81ce

Please sign in to comment.