Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"$schema": "https://codesandbox.io/schemas/tasks.json",
"setupTasks": [
{ "name": "Install dependencies", "command": "corepack enable && pnpm install" },
{ "name": "Build all packages", "command": "pnpm -r build" }
],
"tasks": {
"test": {
"name": "Unit tests",
"command": "pnpm test"
},
"eval": {
"name": "Eval gate",
"command": "pnpm eval"
},
"typecheck": {
"name": "Typecheck",
"command": "pnpm typecheck"
},
"scan-demo": {
"name": "Scan the demo fixture",
"command": "node packages/cli/dist/index.js scan eval/fixtures/c1-shared-datatable/app -o app.graph.json"
}
}
}
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
Loading