Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Latest commit

 

History

History
38 lines (36 loc) · 1.69 KB

CONTRIBUTING.md

File metadata and controls

38 lines (36 loc) · 1.69 KB

Thanks for contributing to Is Nuxt 3 Ready. Before you get started, it is recommended that you have a basic understanding of JSON. Please, avoid trailing commas.

Setting up the project

Fork the project and create a new branch.

Editing the file

All module definitions are located at the root of the folder, modules.json. repoUrl and issueUrl can be omitted. It's an array of objects, so add a new object at the end of the array and fill the following data:

{
  "name": "module-name-in-npm",
  "bridge": "unknown/bugged/pending/ready",
  "core": "unknown/bugged/pending/ready",
  "maintainers": "@JohnDoe, - if none",
  "repoUrl": "github repo url (optional)",
  "issueUrl": "related github issue url (optional)",
}

Examples:

{
  "name": "@nuxtjs/strapi",
  "bridge": "unknown",
  "core": "unknown",
  "maintainers": "@benjamincanac, @Atinux",
  "repoUrl": "https://github.com/nuxt-community/strapi-module",
  "issueUrl": "https://github.com/nuxt-community/strapi-module/issues/165"
}
{
  "name": "@example/this-doesnt-exist",
  "bridge": "ready",
  "core": "bugged",
  "maintainers": "-",
}

Publishing the changes

Commit your changes and push them to your remote fork if working locally. Open a Pull Request to this repository and we'll review it. Thanks again for your contributions!