diff --git a/packages/cli/README.md b/packages/cli/README.md index a1724d22e..ba5475eb9 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -75,13 +75,13 @@ The `dev` command starts a Lowdefy development server, running locally. It can b Run the dev server, watching a relative directory for file changes: ```txt -npx lowdefy@3 dev --watch ../other-project +npx lowdefy@latest dev --watch ../other-project ``` Run the dev server, ignoring the public directory: ```txt -npx lowdefy@3 dev --watch-ignore public/** +npx lowdefy@latest dev --watch-ignore public/** ``` # Configuration diff --git a/packages/docs/concepts/cli.yaml b/packages/docs/concepts/cli.yaml index 2e1163b9c..03e6d8d17 100644 --- a/packages/docs/concepts/cli.yaml +++ b/packages/docs/concepts/cli.yaml @@ -98,12 +98,12 @@ _ref: Run the dev server, watching a relative directory for file changes: ```txt - npx lowdefy@3 dev --watch ../other-project + npx lowdefy@latest dev --watch ../other-project ``` Run the dev server, ignoring the public directory: ```txt - npx lowdefy@3 dev --watch-ignore public/** + npx lowdefy@latest dev --watch-ignore public/** ``` # Configuration diff --git a/packages/docs/deployment/aws-lambda.yaml b/packages/docs/deployment/aws-lambda.yaml index b1ebfcdd4..8d49e04ba 100644 --- a/packages/docs/deployment/aws-lambda.yaml +++ b/packages/docs/deployment/aws-lambda.yaml @@ -55,7 +55,7 @@ _ref: COPY --chown=node:node . . # Build the Lowdefy config using the Lowdefy CLI - RUN npx lowdefy@latest build + RUN npx lowdefy@3.21.2 build # Use the correct Lowdefy base image FROM lowdefy/lowdefy-aws-lambda:3.21.2 diff --git a/packages/docs/deployment/docker.yaml b/packages/docs/deployment/docker.yaml index 01ae322d6..649c33ba4 100644 --- a/packages/docs/deployment/docker.yaml +++ b/packages/docs/deployment/docker.yaml @@ -65,7 +65,7 @@ _ref: COPY --chown=node:node . . # Build the Lowdefy config using the Lowdefy CLI - RUN npx lowdefy@latest build + RUN npx lowdefy@3.21.2 build # Use the correct Lowdefy base image FROM lowdefy/lowdefy:3.21.2 diff --git a/packages/docs/deployment/netlify.yaml b/packages/docs/deployment/netlify.yaml index 09abce0ad..e2f59c981 100644 --- a/packages/docs/deployment/netlify.yaml +++ b/packages/docs/deployment/netlify.yaml @@ -46,7 +46,7 @@ _ref: Configure your Netlify deployment. - - Set your build command to `npx lowdefy@latest build-netlify`. + - Set your build command to `npx lowdefy@3 build-netlify`. - Set your publish directory to `.lowdefy/publish`. #### Step 4 diff --git a/packages/servers/serverDocker/README.md b/packages/servers/serverDocker/README.md index b68058cef..90a35dd2f 100644 --- a/packages/servers/serverDocker/README.md +++ b/packages/servers/serverDocker/README.md @@ -32,10 +32,10 @@ USER node COPY --chown=node:node . . # Build the Lowdefy config using the Lowdefy CLI -RUN npx lowdefy@latest build +RUN npx lowdefy@3.21.2 build # Use the correct Lowdefy base image -FROM lowdefy/lowdefy:3.19.0 +FROM lowdefy/lowdefy:3.21.2 # Copy build output from build stage COPY --from=build --chown=node:node /home/node/lowdefy/.lowdefy/build ./build diff --git a/packages/servers/serverNetlify/README.md b/packages/servers/serverNetlify/README.md index 239d04dae..4fbc4eab5 100644 --- a/packages/servers/serverNetlify/README.md +++ b/packages/servers/serverNetlify/README.md @@ -22,7 +22,7 @@ Link your Github project to Netlify. Configure your Netlify deployment. -- Set your build command to `npx lowdefy@latest build-netlify`. +- Set your build command to `npx lowdefy@3 build-netlify`. - Set your publish directory to `.lowdefy/publish`. - Review the other settings, and deploy your site.