Skip to content

Commit

Permalink
ci: update release-please config
Browse files Browse the repository at this point in the history
  • Loading branch information
macojaune committed Jan 15, 2025
1 parent a26df16 commit 48c7a67
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 71 deletions.
2 changes: 1 addition & 1 deletion apps/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev:ios": "expo start --ios",
"android": "expo run:android",
"ios": "expo run:ios",
"format": "prettier --check . --ignore-path ../../.gitignore",
"format": "prettier --check . --ignore-path .gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit"
},
Expand Down
148 changes: 78 additions & 70 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,74 +1,82 @@
{
"packages": {
".": {
"release-type": "node",
"changelog-sections": [
{
"type": "feat",
"section": "🚀 New Features",
"hidden": false
},
{
"type": "feature",
"section": "🚀 New Features",
"hidden": false
},
{
"type": "enhance",
"section": "💅 Enhancements",
"hidden": false
},
{
"type": "fix",
"section": "🔥 Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "🏃 Performance Improvements",
"hidden": false
},
{
"type": "revert",
"section": "↩️ Reverts",
"hidden": true
},
{
"type": "docs",
"section": "📚 Documentation",
"hidden": false
},
{
"type": "style",
"section": "🎨 Code Style",
"hidden": false
},
{
"type": "chore",
"section": "⚙️ Chores",
"hidden": false
},
{
"type": "refactor",
"section": "⌨️ Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "🧪 Automated Testing",
"hidden": false
},
{
"type": "build",
"section": "🛠️ Build System",
"hidden": false
},
{
"type": "ci",
"section": "📦 CI Improvements",
"hidden": false
}
]
"changelog-sections": [
{
"type": "feat",
"section": "🚀 New Features",
"hidden": false
},
{
"type": "feature",
"section": "🚀 New Features",
"hidden": false
},
{
"type": "enhance",
"section": "💅 Enhancements",
"hidden": false
},
{
"type": "fix",
"section": "🔥 Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "🏃 Performance Improvements",
"hidden": false
},
{
"type": "revert",
"section": "↩️ Reverts",
"hidden": true
},
{
"type": "docs",
"section": "📚 Documentation",
"hidden": false
},
{
"type": "style",
"section": "🎨 Code Style",
"hidden": false
},
{
"type": "chore",
"section": "⚙️ Chores",
"hidden": false
},
{
"type": "refactor",
"section": "⌨️ Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "🧪 Automated Testing",
"hidden": false
},
{
"type": "build",
"section": "🛠️ Build System",
"hidden": false
},
{
"type": "ci",
"section": "📦 CI Improvements",
"hidden": false
}
],
"packages": {
"./apps/expo": {
"release-type": "expo"
},
"./apps/nextjs": {
"release-type": "node"
},
"./packages/api": {},
"./packages/ui": {},
"./packages/db": {},
"./packages/convex": {},
"./packages/auth": {}
}
}

0 comments on commit 48c7a67

Please sign in to comment.