diff --git a/packages/twenty-docker/twenty/Dockerfile b/packages/twenty-docker/twenty/Dockerfile index 33a872bf6e..ee0b05215b 100644 --- a/packages/twenty-docker/twenty/Dockerfile +++ b/packages/twenty-docker/twenty/Dockerfile @@ -41,7 +41,7 @@ ARG REACT_APP_SERVER_BASE_URL COPY ./packages/twenty-front /app/packages/twenty-front COPY ./packages/twenty-ui /app/packages/twenty-ui -RUN yarn nx build twenty-front +RUN npx nx build twenty-front # Final stage: Run the application diff --git a/packages/twenty-docs/docs/start/local-setup/yarn-setup.mdx b/packages/twenty-docs/docs/start/local-setup/yarn-setup.mdx index 7a59038630..fb793f7844 100644 --- a/packages/twenty-docs/docs/start/local-setup/yarn-setup.mdx +++ b/packages/twenty-docs/docs/start/local-setup/yarn-setup.mdx @@ -187,15 +187,15 @@ yarn nx database:reset twenty-server Start the server and the frontend: ```bash -yarn nx start twenty-server -yarn nx start twenty-front +npx nx start twenty-server +npx nx start twenty-front ``` Alternatively, you can start both applications at once: ```bash -yarn nx start +npx nx start # or -yarn nx start twenty +npx nx start twenty ``` Twenty's server will be up and running at [http://localhost:3000/graphql](http://localhost:3000/graphql). diff --git a/packages/twenty-front/package.json b/packages/twenty-front/package.json index e72e0ed7a3..79e8e54edf 100644 --- a/packages/twenty-front/package.json +++ b/packages/twenty-front/package.json @@ -4,11 +4,11 @@ "private": true, "type": "module", "scripts": { - "build": "npx nx exec -- vite build && sh ./scripts/inject-runtime-env.sh", + "build": "npx vite build && sh ./scripts/inject-runtime-env.sh", "build:sourcemaps": "VITE_BUILD_SOURCEMAP=true NODE_OPTIONS=--max-old-space-size=3000 npx nx build", - "start:prod": "NODE_ENV=production npx nx exec -- vite --host", - "storybook:build": "npx nx exec -- storybook build", - "tsup": "npx nx exec -- tsup" + "start:prod": "NODE_ENV=production npx vite --host", + "storybook:build": "npx storybook build", + "tsup": "npx tsup" }, "engines": { "node": "^18.17.1", diff --git a/packages/twenty-ui/README.md b/packages/twenty-ui/README.md index dfab0516c5..22cbbbf2ad 100644 --- a/packages/twenty-ui/README.md +++ b/packages/twenty-ui/README.md @@ -4,12 +4,12 @@ This library was generated with [Nx](https://nx.dev). ## Building -Run `yarn nx build twenty-ui` to build the library. +Run `npx nx build twenty-ui` to build the library. ## Storybook Server -Run `yarn nx start twenty-ui` to start the storybook development server on `localhost:6006`. +Run `npx nx start twenty-ui` to start the storybook development server on `localhost:6006`. ## Running unit tests -Run `yarn nx test twenty-ui` to execute the unit tests via [Jest](https://jestjs.io). +Run `npx nx test twenty-ui` to execute the unit tests via [Jest](https://jestjs.io).