Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 952 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (25 loc) · 952 Bytes

Pre-requisites

  • Node.js v16.9.0 or above
  • Enable corepack

Installing steps for developer

  • Clone your forked project
  • Install deps with pnpm
$ pnpm install --shamefully-hoist
  • Run development server
# automagically watch changes for you after run
$ pnpm run dev

It's very simple!

Contributing

  • Star the project ⭐ and fork it.
  • Clone your fork git clone https://github.com/<your username>/mazer-nuxt
  • Create your feature branch (git checkout -b my-new-feature).
  • Commit your changes:
    • Components: git commit -am 'feat(components): add <component name> component'
    • Documentation: git commit -am 'docs: fix typo'
    • Configuration file and application bug-free changes: git commit -am 'meta: add LF'
  • Push your change (git push -u origin my-new-feature).
  • Go to your forked repository on github and submit a pull request to Mazer Nuxt!