Skip to content
Open
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,7 @@ jspm_packages/
*.sln

# Compact
managed/
managed/

# Turbo
.turbo
5 changes: 4 additions & 1 deletion bboard-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json && cp -R ../contract/src/managed dist/contract/src/managed",
"ci": "npm run typecheck && npm run lint && npm run build",
"lint": "eslint src",
"prepack": "npm run build",
"standalone": "docker compose -f standalone.yml pull && node --experimental-specifier-resolution=node dist/launcher/standalone.js",
"standalone": "docker compose -f standalone.yml pull && node --experimental-specifier-resolution=node --loader ts-node/esm src/launcher/standalone.ts",
"testnet-remote": "node --experimental-specifier-resolution=node --loader ts-node/esm src/launcher/testnet-remote.ts",
"testnet-remote-ps": "node --experimental-specifier-resolution=node dist/launcher/testnet-remote-start-proof-server.js",
"testnet-local": "node --experimental-specifier-resolution=node dist/launcher/testnet-local.js",
Expand Down
15 changes: 8 additions & 7 deletions bboard-cli/turbo.json → turbo.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"extends": ["//"],
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"dangerouslyDisablePackageManagerCheck": true,
"tasks": {
"build": {
"dependsOn": ["compact"],
"outputMode": "new-only",
"dependsOn": ["^compact"],
"outputLogs": "new-only",
"inputs": ["src/**/*.ts", "src/**/*.mts", "src/**/*.tsx", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"],
"outputs": ["dist/**"]
},
"lint": {
"outputMode": "new-only",
"dependsOn": ["compact", "build"]
"outputLogs": "new-only",
"dependsOn": ["^compact", "build"]
},
"test": {
"outputMode": "new-only",
"dependsOn": ["build", "compact"],
"outputLogs": "new-only",
"dependsOn": ["build", "^compact"],
"inputs": ["src/**/*.ts", "jest.config.ts", "tsconfig.json", "*.yml", "dist/**/.js"],
"outputs": ["reports/**"]
}
Expand Down