diff --git a/README.md b/README.md index fed3f1c..dbe4719 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,14 @@ You can pass additional arguments to the script(s) that are being spawned: npm start lint --fix # --fix will be passed on to the lint script ``` +#### scripts + +If you don't use `-p` (because you don't need parallelism) then you can simply provide the name of the script like so: + +```console +npm start cover +``` + That's all for the CLI. ### package-scripts.js diff --git a/ROADMAP.md b/ROADMAP.md index 636834a..ea4bfbb 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -5,6 +5,7 @@ - Add something like `p-s help` that will log out how to use the cli and available scripts to run in the project - Add improved prefixing. Right now you can prefix the entire name of a script, but you couldn't prefix something like `test.watch` as `t.w` and I think that'd be sweet +- Add the ability to specify multiple scripts that run in series ## Might do