Tools

Parcel .dockerignore

.dockerignore for tools projects

View on GitHub

.dockerignore Content

# ============================================================================
# Created by https://dockerignore.com/
# TOOL-SPECIFIC TEMPLATE for Parcel
# Website: https://parceljs.org/
# Repository: https://github.com/parcel-bundler/parcel
# ============================================================================

# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# TEMPLATE OVERVIEW & USAGE NOTES
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# • TEMPLATE TYPE: TOOL-SPECIFIC TEMPLATE
# • PURPOSE: Parcel bundler specific ignore patterns
# • DESIGN PHILOSOPHY: Contains only Parcel-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 Parcel setup
# • OFFICIAL SOURCES: Parcel documentation and community patterns

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# PARCEL CACHE AND BUILD DIRECTORIES
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Parcel cache directories (CRITICAL FOR PARCEL PERFORMANCE)

**/.parcel-cache/
**/parcel-cache/

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# PARCEL CONFIGURATION AND OUTPUT
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Parcel configuration files and build output

.parcelrc
**/dist/

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# PARCEL DEVELOPMENT ARTIFACTS
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Parcel-specific development files and logs

parcel-debug.log*
parcel-error.log*
parcel.log*

Note: This file is fetched from GitHub and cached for 7 days.