From 3dd10a9672636c01cce85ae5065c54e4827e79c7 Mon Sep 17 00:00:00 2001 From: yuhan0 Date: Tue, 7 Oct 2025 11:24:38 +0800 Subject: [PATCH] Update README.md usage of deprecated start-process --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2c1a786..de8392c 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ Launchpad performs a number of steps, currently these are - `include-watcher` : Start up the main watcher which will handle deps.edn/.env watching - `run-nrepl-server` : Add startup code to start nREPL - `print-summary` : Print an overview of aliases and extra dependencies that are being included -- `start-process` : This is where we actually start Clojure +- `start-clojure-process` : This is where we actually start Clojure - `wait-for-nrepl` : Wait for nREPL to be available - `maybe-connect-emacs` : Instruct Emacs to connect to nREPL @@ -237,7 +237,7 @@ update: - `:paths` : paths to add to the classpath Most of the time you want to add extra steps either right before, or right after -`start-process`. The vars `before-steps` and `after-steps` are useful for that. +`start-clojure-process`. The vars `before-steps` and `after-steps` are useful for that. ```clj (require '[lambdaisland.launchpad :as launchpad] @@ -252,7 +252,7 @@ Most of the time you want to add extra steps either right before, or right after {:steps (concat launchpad/before-steps [npm-install - launchpad/start-process] + launchpad/start-clojure-process] launchpad/after-steps)}) ```