mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-09 20:37:47 +00:00
Fixing failing tasks in ci workflow (#394)
* fixing jest config * fixing eslint errors for react-form * fixing script lints * configuring prettier to ignore built files * updating eslint deps * updating pnpm lockfile * updating dep install step in pr workflow * rm reference to custom validatePackages script * fixing code sandbox failure * attempting to fix frozen locfile issue * fixing install:csb step * removing unnecessary type assignment
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
export type Commit = {
|
||||
commit: CommitOrTree
|
||||
tree: CommitOrTree
|
||||
author: AuthorOrCommitter
|
||||
author?: AuthorOrCommitter
|
||||
committer: AuthorOrCommitter
|
||||
subject: string
|
||||
body: string
|
||||
parsed: Parsed
|
||||
parsed?: Parsed
|
||||
}
|
||||
|
||||
export type CommitOrTree = {
|
||||
@@ -14,13 +14,13 @@ export type CommitOrTree = {
|
||||
}
|
||||
|
||||
export type AuthorOrCommitter = {
|
||||
name: string
|
||||
name?: string
|
||||
email: string
|
||||
date: string
|
||||
}
|
||||
|
||||
export type Parsed = {
|
||||
type: string
|
||||
type?: string
|
||||
scope?: string | null
|
||||
subject: string
|
||||
merge?: null
|
||||
|
||||
Reference in New Issue
Block a user