We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af13720 commit 854dcdaCopy full SHA for 854dcda
examples/workspace/README.md
@@ -73,8 +73,11 @@ pipeline for release.
73
To run the tests for each package you can run the command
74
75
```bash
76
-# Run `clojure -M` in each package (indicated by the `*`) that has a `:test` alias.
77
-kmono run -M ':*/test'
+# Run `clojure -M:test` in each package that has a `:test` alias.
+kmono run -M :test
78
+
79
+# Only run `clojure -M:test` in package a.
80
+kmono run -M :test -F '*/a'
81
```
82
83
Each respective packages' `:test` alias will then be appended to the command when it is run, like so: `clojure -M:test`.
0 commit comments