Skip to content

Commit

Permalink
test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
vseplet committed Jun 6, 2024
1 parent 26ee1d7 commit b9e7618
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@
"noImplicitReturns": true,
"exactOptionalPropertyTypes": true
}
}
}
1 change: 0 additions & 1 deletion src/Level.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/**
* Level - The level of the log message
*/

export enum Level {
TRACE,
DEBUG,
Expand Down
4 changes: 2 additions & 2 deletions update-version.workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const mdUrlReplacePattern = /@[^/]+\//;

class UpdateVersionContext extends ContextPot<{}> {
data = {
version: 'v1',
version: '1',
};
}

Expand Down Expand Up @@ -44,7 +44,7 @@ const workflow = core.workflow(UpdateVersionContext)
versions[0].substring(1),
10,
);
ctx.data.version = `v${currentVersionNumber + 1}`;
ctx.data.version = `${currentVersionNumber + 1}`;

newVersionsTS = `export default [ ${
[ctx.data.version, ...versions].map((version) =>
Expand Down
2 changes: 1 addition & 1 deletion versions.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default [ "v2", "v1" ];
export default [ "2", "1" ];

0 comments on commit b9e7618

Please sign in to comment.