Tools
Rollup .dockerignore
.dockerignore for tools projects
.dockerignore Content
# ============================================================================
# Created by https://dockerignore.com/
# TOOL-SPECIFIC TEMPLATE for Rollup
# Website: https://rollupjs.org/
# Repository: https://github.com/rollup/rollup
# ============================================================================
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# TEMPLATE OVERVIEW & USAGE NOTES
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# • TEMPLATE TYPE: TOOL-SPECIFIC TEMPLATE
# • PURPOSE: Rollup bundler specific ignore patterns
# • DESIGN PHILOSOPHY: Contains only Rollup-specific patterns for build optimization
# • COMBINATION GUIDANCE: Combine with framework or language templates as needed
# • SECURITY CONSIDERATIONS: Security patterns not included (use common/security.dockerignore)
# • BEST PRACTICES: Review before use, test with your specific Rollup setup
# • OFFICIAL SOURCES: Rollup documentation and community patterns
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# ROLLUP CACHE AND BUILD DIRECTORIES
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Rollup cache directories (CRITICAL FOR ROLLUP PERFORMANCE)
**/.rollup.cache/
**/.rollup/
**/rollup.build/
**/rollup.cache/
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# ROLLUP CONFIGURATION AND OUTPUT
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Rollup configuration files and build output
rollup.config.*.cjs
rollup.config.*.js
rollup.config.*.mjs
rollup.config.*.ts
**/bundles/
**/dist/
**/output/
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# ROLLUP DEVELOPMENT ARTIFACTS
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Rollup-specific development files and logs
rollup-debug.log*
rollup-error.log*
rollup.log*