Publish 1.2.4

This commit is contained in:
encode42 2024-12-08 18:08:10 -05:00
parent fad74d3ff8
commit 2e008a603d
3 changed files with 6 additions and 4 deletions

View File

@ -5,7 +5,7 @@
This fork removes Node dependencies to work with Cloudflare Pages. It might work in other environments that provide `fetch` as well!
- `node-cache` has been replaced with a simple in-memory record store.
- `URL` has been replaced with a barebones implementation.
- `URL` has been replaced with a bare-bones implementation.
- `EOL` has been replaced with `\\n`.
* Development outside of Linux might not be supported!
- `node-fetch` has been removed, falling back to the environment's native `fetch` functions.
@ -15,6 +15,8 @@ Additionally, some quality-of-life changes have been made.
- Both the above and `Album`'s `description` will use Linux newlines.
- `url` option to replace `albumUrl` and `trackUrl`.
* The original fields will still take priority!
- `slug` field on `Album` and `Track`.
- `Track`'s `streamUrl` will be overridden by `streamUrlHQ` if available.
This fork will likely not be maintained outside my own interest!

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@encode42/bandcamp-fetch",
"version": "1.2.1",
"version": "1.2.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@encode42/bandcamp-fetch",
"version": "1.2.1",
"version": "1.2.4",
"license": "MIT",
"dependencies": {
"bottleneck": "^2.19.5",

View File

@ -1,6 +1,6 @@
{
"name": "@encode42/bandcamp-fetch",
"version": "1.2.3",
"version": "1.2.4",
"description": "Scrape Bandcamp content (supports Cloudflare Pages)",
"scripts": {
"build": "npm run prepare",