From 4d8e7d64c219bdb6fce016504f93f9df14ce8152 Mon Sep 17 00:00:00 2001 From: Cody Miller Date: Sun, 2 Oct 2022 16:21:40 -0400 Subject: [PATCH 1/3] devex: add rollout ID to prefixes --- src/util/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/types.ts b/src/util/types.ts index f9541251..9e06c4ea 100644 --- a/src/util/types.ts +++ b/src/util/types.ts @@ -103,6 +103,10 @@ export const ID_PREFIXES = [ prefix: 'build', description: 'Build ID for build logs', }, + { + prefix: "rollout", + description: "Rollout ID for rollouts." + } ] as const; export type IdPrefixes = typeof ID_PREFIXES[number]['prefix']; From d10ca23187f9baefb2568d0905027a05825e99c5 Mon Sep 17 00:00:00 2001 From: Cody Miller Date: Sun, 2 Oct 2022 16:22:46 -0400 Subject: [PATCH 2/3] docs(changeset): Add rollout ID to ID prefixes --- .changeset/wet-onions-join.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/wet-onions-join.md diff --git a/.changeset/wet-onions-join.md b/.changeset/wet-onions-join.md new file mode 100644 index 00000000..365f35bf --- /dev/null +++ b/.changeset/wet-onions-join.md @@ -0,0 +1,5 @@ +--- +'@onehop/js': minor +--- + +Add rollout ID to ID prefixes From 571f5ec6269d53931b671364311e145bc90f6029 Mon Sep 17 00:00:00 2001 From: Cody Miller Date: Sun, 2 Oct 2022 16:24:40 -0400 Subject: [PATCH 3/3] devex: prettier --- src/util/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/types.ts b/src/util/types.ts index 9e06c4ea..c551cc59 100644 --- a/src/util/types.ts +++ b/src/util/types.ts @@ -103,10 +103,10 @@ export const ID_PREFIXES = [ prefix: 'build', description: 'Build ID for build logs', }, - { - prefix: "rollout", - description: "Rollout ID for rollouts." - } + { + prefix: 'rollout', + description: 'Rollout ID for rollouts.', + }, ] as const; export type IdPrefixes = typeof ID_PREFIXES[number]['prefix'];