rique-dev / pink-lemonade-web

Central de componentes do Front end

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

enter image description here


Pink Lemonade Web by GuiaBolso

PinkLemonadeWeb use:

  • Nx: It's a set of extensible dev tools for monorepos.
  • Typescript: Superset javascript for types and abstraction.
  • React: A JavaScript library for building user interfaces
  • Styled Components: Powerful preprocessor css (Css-in-Js) in javascript
  • Others...?

Guiabolso UI Documentation

Check the documentation for our interface library here

Guiabolso Utils Documentation

Check the documentation for our utils library here

Running unit tests

Run nx test <PROJECT> to execute the unit tests via Jest.

Run nx affected:test to execute the unit tests affected by a change.

Running end-to-end tests

Run ng e2e <PROJECT> to execute the end-to-end tests via Cypress.

Run nx affected:e2e to execute the end-to-end tests affected by a change.

Running Doc Storybook

Run nx run <PROJECT>:storybook to execute the storybook via Storybook.

You can use nx run ui:storybook for make your components

Generate an component in UI

Run nx g component --name=<Component> --project=ui --pascalCaseFiles --export --directory=<Category>/<component> to generate an application.

exemple: nx g component --name=Button --project=ui --pascalCaseFiles --export --directory=myCategory/button

Components are sharable across libraries and applications. They can be imported from npm using npm i @pink-lemonade-web/ui.

Generate a library

Run nx g @nrwl/workspace:lib <LIB_NAME> --pascalCaseFiles --publishable to generate a library typescript.

You can also use any code parts to reuse in others project through npm.

Libraries are sharable across libraries and applications. They can be imported from npm using npm i @pink-lemonade-web/<LIB_NAME>.

Generate a new library UI

Run nx g @nrwl/react:lib --name=Ui --pascalCaseFiles --publishable to generate a library React.

Build

Run nx build <PROJECT|LIB> to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.

Understand your workspace

Run nx dep-graph to see a diagram of the dependencies of your projects.

Further help

Visit the Nx Documentation to learn more.

About

Central de componentes do Front end


Languages

Language:TypeScript 97.2%Language:JavaScript 2.7%Language:HTML 0.2%