feat: implement workflow (wip)
This commit is contained in:
17
packages/workflow-engine/tsup.config.ts
Normal file
17
packages/workflow-engine/tsup.config.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineConfig } from 'tsup';
|
||||
|
||||
export default defineConfig({
|
||||
entry: [
|
||||
'src/index.ts',
|
||||
'src/task-execution/index.ts',
|
||||
'src/worktree/index.ts',
|
||||
'src/process/index.ts',
|
||||
'src/state/index.ts'
|
||||
],
|
||||
format: ['esm'],
|
||||
dts: true,
|
||||
sourcemap: true,
|
||||
clean: true,
|
||||
splitting: false,
|
||||
treeshake: true
|
||||
});
|
||||
Reference in New Issue
Block a user