tools/media-tools/image-converter/docs/updating-dependencies.md

22 lines
839 B
Markdown

# Updating Dependencies
To maintain a simple and lightweight environment, the project primarily uses vanilla JavaScript and is light on third-party libraries, avoiding the need for a package manager.
To update the respective library, simply run a curl command from the project root folder to pull and replace with the latest version.
**`browser-image-compression.js`**:
```
curl -o assets/vendor/browser-image-compression.js https://raw.githubusercontent.com/Donaldcwl/browser-image-compression/refs/heads/master/dist/browser-image-compression.js
```
**`heic-to.js`**:
```
curl -o assets/vendor/heic-to.js https://raw.githubusercontent.com/hoppergee/heic-to/refs/heads/main/dist/iife/heic-to.js
```
**`jszip.js`**:
```
curl -o assets/vendor/jszip.js https://raw.githubusercontent.com/Stuk/jszip/refs/heads/main/dist/jszip.min.js
```