Skip to content

Commit

Permalink
fix(build): switch format to cjs
Browse files Browse the repository at this point in the history
  • Loading branch information
brewcoua committed Jun 14, 2024
1 parent ec3586e commit 06ef1c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.lib.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default [
output: [
{
file: 'dist/index.js',
format: 'es',
format: 'cjs',
},
],
plugins: [
Expand Down
4 changes: 4 additions & 0 deletions src/services/runner/domain/RunnerStatus.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
/**
* The status of the runner.
* @public
*/
export type RunnerStatus = 'starting' | 'running' | 'done' | 'failed'
export default RunnerStatus

0 comments on commit 06ef1c3

Please sign in to comment.