Skip to content

Commit 09bd7fa

Browse files
authored
🐛 FIX: Pipe and tools build paths (#120)
1 parent 2b91c68 commit 09bd7fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/baseai/src/build/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const buildPipes = async () => {
3232
p.intro(heading({ text: 'PIPES', sub: '', dim: true }));
3333

3434
const sourcePath = path.join(process.cwd(), 'baseai', 'pipes');
35-
const outputPath = path.join(process.cwd(), '.baseai/pipes');
35+
const outputPath = path.join(process.cwd(), '.baseai', 'pipes');
3636

3737
const builtPipes = await buildTypeScriptFiles(
3838
sourcePath,
@@ -47,7 +47,7 @@ const buildTools = async () => {
4747
p.intro(heading({ text: 'TOOLS', sub: '', dim: true }));
4848

4949
const sourcePath = path.join(process.cwd(), 'baseai', 'tools');
50-
const outputPath = path.join(process.cwd(), '.baseai/tools');
50+
const outputPath = path.join(process.cwd(), '.baseai', 'tools');
5151

5252
const builtTools = await buildTypeScriptFiles(
5353
sourcePath,

0 commit comments

Comments
 (0)