Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Build outputs
build/
dist/
.svelte-kit/

# Development files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# IDE files
.vscode/
.idea/
*.swp
*.swo

# OS files
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Documentation
docs/
README.md

# Logs
logs
*.log

# Coverage
coverage/

# Temporary files
*.tmp
*.temp
97 changes: 91 additions & 6 deletions .github/changelog-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,106 @@
"categories": [
{
"title": "## 🚀 Features",
"labels": ["enhancement"]
"labels": ["enhancement", "feature"],
"rules": [
{
"pattern": "^feat(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## 🐛 Fixes",
"labels": ["bug"]
"title": "## 🐛 Bug Fixes",
"labels": ["bug", "fix"],
"rules": [
{
"pattern": "^fix(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## 📚 Documentation",
"labels": ["documentation"],
"rules": [
{
"pattern": "^docs(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## 🎨 Code Style",
"labels": ["style"],
"rules": [
{
"pattern": "^style(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## ♻️ Refactoring",
"labels": ["refactor"],
"rules": [
{
"pattern": "^refactor(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## ⚡ Performance",
"labels": ["performance"],
"rules": [
{
"pattern": "^perf(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## ✅ Tests",
"labels": ["test"],
"rules": [
{
"pattern": "^test(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## 🔧 Build & CI",
"labels": ["build", "ci"],
"rules": [
{
"pattern": "^(build|ci)(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## ⤵️ Dependencies",
"labels": ["dependencies"]
"labels": ["dependencies"],
"rules": [
{
"pattern": "^(chore|deps)(\\(.+\\))?:",
"on_property": "title"
}
]
},
{
"title": "## 💭 Uncategorized",
"title": "## 💭 Other Changes",
"labels": []
}
],
"template": "#{{CHANGELOG}}",
"pr_template": "* #{{TITLE}} by @#{{AUTHOR}} in ##{{NUMBER}}"
"pr_template": "* #{{TITLE}} by @#{{AUTHOR}} in ##{{NUMBER}}",
"empty_template": "No changes",
"transformers": [
{
"pattern": "^(feat|fix|docs|style|refactor|perf|test|build|ci|chore|deps)(\\(.+\\))?:\\s*(.+)",
"target": "$3"
}
]
}
Loading