diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-09 09:05:18 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-09 09:05:18 -0500 |
commit | f7e13f5917e176fd44a80479ab06eb61e34dd138 (patch) | |
tree | dc5ebed287c123b4e572371074ffcd59a8a76334 /turbo.json | |
parent | ci: Rename things better (diff) | |
download | locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.gz locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.bz2 locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.lz locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.xz locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.zst locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.zip |
feat: Add Node.js
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | turbo.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..77a4042 --- /dev/null +++ b/turbo.json @@ -0,0 +1,28 @@ +{ + "$schema": "https://turbo.build/schema.json", + "ui": "tui", + "tasks": { + "build": { + "dependsOn": [ + "^build" + ], + "inputs": [ + "$TURBO_DEFAULT$", + ".env*" + ], + "outputs": [ + "dist/**" + ] + }, + "lint": { + "dependsOn": [ + "^lint" + ] + }, + "dev": { + "cache": false, + "persistent": true + }, + "test": {} + } +}
\ No newline at end of file |