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.
Fork the project and create a new branch.
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": "-",
}
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!