mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-07-12 21:02:17 +02:00
chore(apps): drop unused STEPS array (lint)
This commit is contained in:
parent
beaf6ebf69
commit
2bbb502661
1 changed files with 3 additions and 2 deletions
|
|
@ -28,8 +28,9 @@ export class PublishError extends Error {
|
|||
}
|
||||
}
|
||||
|
||||
const STEPS = ['packaged', 'repo_created', 'source_pushed', 'release_created', 'assets_uploaded', 'registered', 'published'] as const;
|
||||
export type PublishStep = typeof STEPS[number];
|
||||
export type PublishStep =
|
||||
| 'packaged' | 'repo_created' | 'source_pushed' | 'release_created'
|
||||
| 'assets_uploaded' | 'registered' | 'published';
|
||||
|
||||
export type PublishProgress = (step: PublishStep | 'polling', detail?: string) => void;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue