Skip to content

Commit 3de7c6c

Browse files
authored
Update README.md
1 parent 1850272 commit 3de7c6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ Like this template? Please consider [supporting the development ❤️](https://
129129
- If you're using the [ViolentMonkey extension](https://violentmonkey.github.io/) (which I recommend), after running the command `npm run watch`, you may open the URL shown in the console in your browser and select the `Track local file` option in the installation dialog.
130130
This makes it so the userscript automatically updates when the code changes (reloading the website is still necessary).
131131
Note: the tab needs to stay open on Firefox or the script won't keep updating itself.
132-
- My library [UserUtils](https://github.com/Sv443-Network/UserUtils) is already included as a dependency. It offers lots of utilities for userscripts like registering listeners for when CSS selectors exist, intercepting events, managing persistent user configurations, modifying the DOM more easily, various math and array functions and more. You can find the full list of features and its documentation [here.](https://github.com/Sv443-Network/UserUtils#table-of-contents)
133-
- Libraries that are required at runtime should be declared inside `dependencies.json`, as long as they are hosted on a CDN and expose a global variable.
132+
- My library [UserUtils](https://github.com/Sv443-Network/UserUtils) is already included as a dependency. It offers lots of utilities for userscripts like registering listeners for when CSS selectors exist, intercepting events, creating persistent JSON databases, modifying the DOM more easily, various math and array functions and more. You can find the full list of features and their documentation [here.](https://github.com/Sv443-Network/UserUtils#table-of-contents)
133+
- Libraries that are required at runtime should be declared inside `require.json`, as long as they are hosted on a CDN and expose a global variable.
134134
This way, they will be loaded using the `@require` directive and will be exempt from [minification rules](https://greasyfork.org/en/help/code-rules) on platforms like GreasyFork.
135135
You may use a service like [jsDelivr](https://www.jsdelivr.com/) to include any npm library this way.
136-
You will still be able to import and use the libraries as usual in your code.
136+
You will still be able to import and use the libraries as usual in your code, the bundler will handle everything else.
137137
- The final bundled userscript file in the `dist/` folder should be committed and pushed to GitHub.
138138
This way, the `@downloadURL` and `@updateURL` directives make it so the script is automatically updated from that same file.
139139
For this to work properly, don't forget to bump the version in `package.json` before building, so that every user of your userscript may receive the update.

0 commit comments

Comments
 (0)