Lint everything
All checks were successful
Bump deps (only minor versions) / update-dependencies (push) Successful in 22s

This commit is contained in:
0d0 2025-02-14 21:42:56 +01:00
parent 22a7dd13da
commit 6f1d01e624
5 changed files with 6 additions and 9 deletions

View file

@ -19,4 +19,4 @@ jobs:
run: | run: |
npm install npm install
npm run prepare npm run prepare
npm run check npm run check

View file

@ -3,7 +3,7 @@ name: Create Release
on: on:
push: push:
tags: tags:
- "v*" - 'v*'
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View file

@ -1,9 +1,9 @@
## scaricatore ## scaricatore
![version](https://git.pweapon.org/odo/dl.emersa.it/badges/release.svg "version") ![version](https://git.pweapon.org/odo/dl.emersa.it/badges/release.svg 'version')
![status](https://git.pweapon.org/odo/dl.emersa.it/badges/workflows/ci.yaml/badge.svg "status") ![status](https://git.pweapon.org/odo/dl.emersa.it/badges/workflows/ci.yaml/badge.svg 'status')
![image](./static/screen.webp "screen") ![image](./static/screen.webp 'screen')
It's a svelte(kit) frontend that uses `yt-dlp` to let the user download things from the web. It's a svelte(kit) frontend that uses `yt-dlp` to let the user download things from the web.

View file

@ -9,7 +9,4 @@
set -e set -e
npm run prepare
npm run check
npm run format
npm run lint npm run lint

View file

@ -1,7 +1,7 @@
import { create } from 'youtube-dl-exec'; import { create } from 'youtube-dl-exec';
import { env } from '$env/dynamic/private'; import { env } from '$env/dynamic/private';
import { spawn } from 'node:child_process'; import { spawn } from 'node:child_process';
const YTDLP_PATH: string = env.YTDLP_PATH as string const YTDLP_PATH: string = env.YTDLP_PATH as string;
export const ytdl = create(YTDLP_PATH); export const ytdl = create(YTDLP_PATH);