Files
deno/.dockerignore
T

18 lines
446 B
Plaintext
Raw Normal View History

2022-10-03 10:31:15 -04:00
# Files to ignore
2025-09-16 19:37:11 -04:00
# Tell docker to ignore .gitkeep
.gitkeep
# Tell docker to ignore .gitignore
.gitignore
# Tell docker to ignore node_modules/**
node_modules/**
# Tell docker to ignore .node_modules/**
.node_modules/**
2026-05-12 20:06:17 -04:00
# Tell docker to ignore **/.gitkeep
**/.gitkeep
# Tell docker to ignore **/.gitignore
**/.gitignore
2025-09-16 19:37:11 -04:00
# Tell docker to ignore **/node_modules/**
**/node_modules/**
2026-05-12 20:06:17 -04:00
# Tell docker to ignore **/.node_modules/**
**/.node_modules/**