chore(cli): refactor
All checks were successful
Build and Push Docker Image / tests (push) Successful in 45s
Build and Push Docker Image / build (push) Successful in 4m4s

This commit is contained in:
Lars Hampe 2024-10-31 20:36:32 +01:00
parent 4faa61159e
commit c4e55490cc
3 changed files with 2 additions and 6 deletions

View File

@ -1,11 +1,6 @@
#! /usr/bin/env bun
import { parseArgs } from 'node:util'
import semver from 'semver'
import { z } from 'zod'
import { upload_commits } from './upload_commits'
//import { pushCommits } from './pushCommits'
import { args } from './utils/arguments'
import { git_log } from './utils/git_log'
if (args.success) {
upload_commits(args.data)

View File

@ -34,7 +34,7 @@ export const args = schema.safeParse(mappedArguments)
if (!args.success) {
console.error(
`@changelog/cli: Missing arguemnts: ${args.error.errors
`boring.tools CLI: Missing arguemnts: ${args.error.errors
.map((error) => error.path[0])
.join(', ')}`,
)

View File

@ -1,5 +1,6 @@
const GITFORMAT =
'--pretty=format:{"commit": "%h", "parent": "%p", "refs": "%D", "subject": "%s", "author": { "name": "%aN", "email": "%aE", "date": "%ad" }, "commiter": { "name": "%cN", "email": "%cE", "date": "%cd" }},'
export const git_log = async (
from: string | undefined,
to = 'HEAD',