mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-09 07:38:03 -05:00
Local docker builds (with existing build artifacts) no longer work since https://github.com/ChainSafe/lodestar/pull/8481 because the file `packages/cli/tsconfig.build.tsbuildinfo` is copied to docker build which causes typescript to skip the build, but we are not copying the `lib` which means the whole build is missing (and not rebuilt). The tsbuildinfo is usually part of `lib` which is why this was no issue before. I believe this happens because `"rootDir": "src"` was added to tsconfig, there might be a different way to fix this but in general we don't want to copy tsbuildinfo files into docker builds.
72 lines
1.1 KiB
Plaintext
72 lines
1.1 KiB
Plaintext
# Comment out if you build from source and need to see the commit and branch in logs + metrics
|
|
.git
|
|
# ^^^
|
|
|
|
node_modules
|
|
|
|
# Docs
|
|
# assets are useful for swagger-ui and relatively lightweight
|
|
# https://github.com/ChainSafe/lodestar/pull/5970#discussion_r1334420451
|
|
# assets
|
|
supporting-docs
|
|
docs
|
|
typedocs
|
|
mkdocs.yml
|
|
LICENSE
|
|
README.md
|
|
|
|
# Github & configs
|
|
.github
|
|
.codeclimate.yml
|
|
.codecov.yml
|
|
|
|
# Tooling
|
|
docker
|
|
prometheus.yml
|
|
|
|
# Docker
|
|
Dockerfile
|
|
Dockerfile.dev
|
|
docker-compose.yml
|
|
|
|
# Tests
|
|
packages/**/test
|
|
packages/**/lib
|
|
|
|
# Tests artifacts
|
|
.__testdb
|
|
packages/*/spec-tests
|
|
packages/*/benchmark_data
|
|
packages/beacon-node/test-logs/
|
|
packages/cli/test-logs/
|
|
packages/state-transition/test-cache
|
|
benchmark_data
|
|
invalidSszObjects/
|
|
packages/beacon-node/mainnet_pubkeys.csv
|
|
|
|
# Autogenerated docs
|
|
packages/**/docs
|
|
packages/**/typedocs
|
|
docs/pages/**/*-cli.md
|
|
docs/pages/assets
|
|
docs/pages/api/api-reference.md
|
|
docs/pages/contribution/getting-started.md
|
|
docs/site
|
|
|
|
# Lodestar artifacts
|
|
.lodestar
|
|
.pyrmont
|
|
|
|
# Other / artifacts
|
|
**/.nyc_output
|
|
**/coverage
|
|
**/node_modules
|
|
**/test
|
|
**/lib
|
|
**/.tmp
|
|
**/dist
|
|
*.log
|
|
**/*.log
|
|
**/*.tsbuildinfo
|
|
.idea
|
|
.tmp |