To start @pkx/frontend and @pkx/backend together:
npm run devIt executes dev:backend and dev:frontend through concurrently
To start backend or frontend separately use:
npm run dev:backend
# or
npm run dev:frontendIt run dev script in @pkx/backend and @pkx/frontend
To show map of available routes on backend use:
npm run routesIt run routes script in @pkx/backend
To run storybook:
npm run storybookIt run storybook script in @pkx/ui through lerna storybook-cli on http://localhost:9001/
To run build:
npm run buildIt run build script in each package trought lerna.
Publishing through
npm publishdisabled!
Use:
npm run publishIt executes build script in each package next run lerna publish.
Please, test before publishing.
To remove dist directories use:
npm run cleanTo remove node_modules use:
npx lerna clean