Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 943 Bytes

CONTRIBUTING.md

File metadata and controls

60 lines (40 loc) · 943 Bytes

Contributing

All contributions are welcome! If you would like to make some changes, follow these steps:

  • Fork the project and clone it
cd my-projects
git clone [email protected]:nuxt-modules/i18n.git
  • Install the module's dependencies:
cd i18n
pnpm i

Note: This project is using pnpm.

  • Create a new branch for your changes:
git checkout -b my-new-feature
  • Code, code, code!
  • Run ESLint and Vitest
pnpm fix
pnpm test:unit
pnpm test:e2e
  • Commit and push your changes
  • Submit awesome PRs

Documentation

you can contribute for documentation

  • Setup docs
pnpm docs:setup
  • Start the docs server:
pnpm docs:dev
  • Write some doc by editing files in docs/ directory

Please make sure all languages are in sync. If you don't speak a particular language, insert english text in place.

  • Commit and push your changes
  • Once you're done, submit that shiny PR!