See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/bin/bash | |
| cd "$(dirname "$0")/../components" || exit | |
| if [ $? -ne 0 ]; then | |
| echo "Error: Unable to navigate to the components directory." | |
| exit 1 | |
| fi | |
| find . -type f -name "*.vue" | while read vue_file; do |
| #!/bin/bash | |
| GITHUB_TOKEN=$GITHUB_TOKEN | |
| GITHUB_REPO_BRANCH=$GITHUB_REPO_BRANCH | |
| BUILD_INTERVAL_MINUTES=${BUILD_INTERVAL_MINUTES:-30} | |
| commits_info=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \ | |
| "https://api.github.com/repos/$GITHUB_REPO_OWNER/$GITHUB_REPO_NAME/commits?sha=$GITHUB_REPO_BRANCH&per_page=2") | |
| echo -e "$commits_info\n" |
| interface ModuleInfo { | |
| [index: number]: [Function, { [key: string]: number }]; | |
| } | |
| interface DependencyNode { | |
| moduleId: number; | |
| dependencies: DependencyNode[]; | |
| } | |
| async function parseModules(jsContent: string): Promise<ModuleInfo> { |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"