Skip to content

Commit

Permalink
feat: iOS runtime for background runner
Browse files Browse the repository at this point in the history
  • Loading branch information
theproducer committed May 16, 2023
1 parent 81cdca0 commit 221654a
Show file tree
Hide file tree
Showing 50 changed files with 13,454 additions and 5,476 deletions.
40 changes: 40 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"lint",
"build"
],
"cacheDirectory": "node_modules/.cache/nx"
}
}
},
"targetDefaults": {
"lint": {
"dependsOn": [
"^lint"
]
},
"fmt": {
"dependsOn": [
"^fmt"
]
},
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/dist"
]
},
"sync": {
"dependsOn": [
"^sync"
]
}
}
}

0 comments on commit 221654a

Please sign in to comment.