tangle_indexer


git clone https://radroots.dev/git/tangle_indexer.git
Log | Files | Refs | Submodules | LICENSE

turbo.json (1141B)


      1 {
      2     "$schema": "https://turborepo.com/schema.json",
      3     "ui": "tui",
      4     "tasks": {
      5         "build": {
      6             "dependsOn": [
      7                 "^build"
      8             ],
      9             "inputs": [
     10                 "$TURBO_DEFAULT$",
     11                 ".env*"
     12             ],
     13             "outputs": [
     14                 "dist/**",
     15                 ".svelte-kit/**"
     16             ]
     17         },
     18         "lint": {
     19             "dependsOn": [
     20                 "^lint"
     21             ]
     22         },
     23         "check-types": {
     24             "dependsOn": [
     25                 "^check-types"
     26             ]
     27         },
     28         "dev": {
     29             "cache": false,
     30             "persistent": true
     31         },
     32         "app#build": {
     33             "dependsOn": [
     34                 "@radroots/apps-lib#build",
     35                 "@radroots/apps-lib-market#build",
     36                 "@radroots/apps-nostr#build",
     37                 "@radroots/nostr#build",
     38                 "@radroots/core-bindings#build",
     39                 "@radroots/events-bindings#build",
     40                 "@radroots/events-indexed-bindings#build",
     41                 "@radroots/trade-bindings#build"
     42             ]
     43         }
     44     }
     45 }