Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ bun run test # Run unit tests
bun run lint # Check formatting & lint
bun run fix # Auto-fix formatting & lint issues

bun run sync-data # Creates a data/YYYY-MM-DDTHH-MM-SS branch and syncs data from external sources
bun run sync # Creates a chore/data-sync-YYYY-MM-DDTHH-MM-SS branch and syncs data from external sources
```

## Data Sources
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"sync-data": "./scripts/sync-data.sh",
"sync": "./scripts/sync-data.sh",
"release": "release-it"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/sync-data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ git switch -c "$BRANCH"
#----------------------------------------------------------------------
echo "Committing changes ..."
git add -A
git commit -m "data sync: $DATE"
git commit -m "chore: data sync $DATE"

echo "Pushing branch $BRANCH ..."
git push -u origin "$BRANCH"
Loading