fix grammar - 'conflict' instead of 'confliction'

This commit is contained in:
plin 2023-11-05 10:45:47 -05:00 committed by GitHub
parent ddb2bc6898
commit 1572a57f22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,14 +166,14 @@ Replace the steps above and build you first plugin in 30 seconds!
releasepage, // URL to releases(`.xpi`)
updaterdf, // URL to update.json
addonName, // name to be displayed in the plugin manager
addonID, // ID to avoid confliction. IMPORTANT!
addonID, // ID to avoid conflict. IMPORTANT!
addonRef, // e.g. Element ID prefix
addonInstance // the plugin's root instance: Zotero.${addonInstance}
}
}
```
> Be careful to set the addonID and addonRef to avoid confliction.
> Be careful to set the addonID and addonRef to avoid conflict.
- Run `npm install` to set up the plugin and install dependencies. If you don't have NodeJS installed, please download it [here](https://nodejs.org/en/);
- Run `npm run build` to build the plugin in production mode. Run `npm run build-dev` to build the plugin in development mode. The xpi for installation and the built code is under `build` folder.