17 lines
627 B
Plaintext
17 lines
627 B
Plaintext
.git
|
|
# Load-bearing both ways: a stray copy would bake in at /app/node_modules and shadow /node_modules,
|
|
# and matching only the root one is what lets a baked plugin keep its own deps. Never `**/node_modules`.
|
|
node_modules
|
|
npm-debug.log
|
|
*.log
|
|
.DS_Store
|
|
|
|
# A plugin author's pin setting, per README → Plugin dependencies. Nothing reads it at runtime, and
|
|
# an .npmrc is where a private-registry token would sit — never bake one into a shipped image.
|
|
plugins/**/.npmrc
|
|
|
|
e2e-tests/artifacts
|
|
# Orchestration, not test code — keep them out of the runner image (COPY e2e-tests/ ./)
|
|
e2e-tests/Dockerfile
|
|
e2e-tests/compose.*.yml
|