mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-21 23:47:56 +00:00
b74df16210
- Add standard-version for automated version bumping - Create .versionrc with custom configuration for app.json - Add version-updater.cjs script for Expo version syncing - Add version bump scripts (release, release:patch, release:minor, release:major) - Initialize CHANGELOG.md with v1.0.0 release notes - Add iOS buildNumber and Android versionCode for app store releases - Update .gitignore to allow CHANGELOG.md This establishes proper engineering practices for version management.
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
{
|
|
"types": [
|
|
{ "type": "feat", "section": "Features" },
|
|
{ "type": "fix", "section": "Bug Fixes" },
|
|
{ "type": "chore", "section": "Chores", "hidden": false },
|
|
{ "type": "docs", "section": "Documentation", "hidden": false },
|
|
{ "type": "style", "section": "Styling", "hidden": true },
|
|
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
|
|
{ "type": "perf", "section": "Performance Improvements" },
|
|
{ "type": "test", "section": "Tests", "hidden": false },
|
|
{ "type": "build", "section": "Build System", "hidden": false },
|
|
{ "type": "ci", "section": "Continuous Integration", "hidden": false }
|
|
],
|
|
"bumpFiles": [
|
|
{
|
|
"filename": "package.json",
|
|
"type": "json"
|
|
},
|
|
{
|
|
"filename": "app.json",
|
|
"updater": "scripts/version-updater.cjs"
|
|
}
|
|
],
|
|
"commitUrlFormat": "https://github.com/pezkuwichain/pwap/commit/{{hash}}",
|
|
"compareUrlFormat": "https://github.com/pezkuwichain/pwap/compare/{{previousTag}}...{{currentTag}}",
|
|
"issueUrlFormat": "https://github.com/pezkuwichain/pwap/issues/{{id}}",
|
|
"tagPrefix": "mobile-v",
|
|
"header": "# Pezkuwi Mobile Changelog\n\nAll notable changes to the Pezkuwi Mobile application will be documented in this file.\n"
|
|
}
|