Skip to content

Commit d750a74

Browse files
committed
chore: Allow building subpackages in root dist folder
1 parent 9cb6f13 commit d750a74

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

duties.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,19 @@ def build(ctx: Context) -> None:
385385
"""
386386
ctx.run(
387387
tools.build(),
388-
title="Building source and wheel distributions",
388+
title="Building meta package source and wheel distributions",
389+
pty=PTY,
390+
)
391+
ctx.run(
392+
tools.build(outdir="../../dist"),
393+
workdir="packages/griffelib",
394+
title="Building library source and wheel distributions",
395+
pty=PTY,
396+
)
397+
ctx.run(
398+
tools.build(outdir="../../dist"),
399+
workdir="packages/griffecli",
400+
title="Building CLI source and wheel distributions",
389401
pty=PTY,
390402
)
391403

0 commit comments

Comments
 (0)