Skip to content

Commit ccc2519

Browse files
committed
fix: correct build output directory path in workspace configuration
1 parent 9ccb005 commit ccc2519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/lib/workspace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ import { resolve } from 'node:path';
33
export const rootDir = new URL('../../', import.meta.url).pathname;
44
export const adevJaDir = resolve(rootDir, 'adev-ja');
55
export const buildDir = resolve(rootDir, 'build');
6-
export const buildOutputDir = resolve(buildDir, 'dist/bin/adev/build/browser');
6+
export const buildOutputDir = resolve(buildDir, 'dist/bin/adev/dist/browser');

0 commit comments

Comments
 (0)