Skip to content

Commit

Permalink
fix: break the loop when an error occurs
Browse files Browse the repository at this point in the history
  • Loading branch information
I-Want-ToBelieve committed Dec 6, 2023
1 parent 3ff7ceb commit 29504a7
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
3 changes: 3 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"branches": ["main", "next"]
}
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "start",
"skipFiles": ["<node_internals>/**"],
"preLaunchTask": "build",
"program": "${workspaceFolder}/apps/yakite-daemon/dist/bin/yakite-daemon.js",
"outFiles": [
"${workspaceFolder}/apps/yakite-daemon/dist/**/*.js"
]
}
]
}
11 changes: 11 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "pnpm -r build",
"problemMatcher": []
}
]
}

0 comments on commit 29504a7

Please sign in to comment.