We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57b266b commit f8133e3Copy full SHA for f8133e3
justfile
@@ -5,6 +5,7 @@ default:
5
# Contents (alphabetical)
6
## CI/CD
7
## Conda package
8
+## Monorepo
9
## Nix
10
## Python package
11
## Secrets
@@ -103,6 +104,18 @@ conda-type:
103
104
conda-check: conda-lint conda-type conda-test
105
@printf "\n\033[92mAll conda checks passed!\033[0m\n"
106
107
108
+
109
+# Apply monorepo patch to convert project to monorepo structure
110
+[group('monorepo')]
111
+monorepo_patch:
112
+ git apply scripts/monorepo_pyproject.patch
113
114
+# Reverse monorepo patch to revert to single package structure
115
116
+monorepo_reverse:
117
+ git apply --reverse scripts/monorepo_pyproject.patch
118
119
120
121
# Enter the Nix development shell
0 commit comments