Skip to content

Commit

Permalink
Update deps & formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
probablykasper committed Jun 23, 2024
1 parent cb65032 commit 7692891
Show file tree
Hide file tree
Showing 10 changed files with 14,282 additions and 12,602 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@

<p align="center">
<img src="https://raw.githubusercontent.com/probablykasper/thumbnail-grabber/master/src/icon128.png" width="64">
<img src="https://raw.githubusercontent.com/probablykasper/thumbnail-grabber/master/src/icon128.png" width="64">
</p>
<h1 align="center" style="margin-top:0px">
Thumbnail Grabber
Thumbnail Grabber
</h1>
<p align="center">Chrome extension for grabbing thumbnails/covers from YouTube, SoundCloud, Spotify and YouTube Music.</p>
<p align="center">
<a href="https://chrome.google.com/webstore/detail/thumbnail-grabber/gbpjnjieenljpncojgiboejmolbihdob">
<img alt="Chrome Web Store" src="https://img.shields.io/chrome-web-store/users/gbpjnjieenljpncojgiboejmolbihdob?color=4DB0F2&logo=Google%20Chrome&logoColor=white&style=flat-square">
</a>
<a href="https://addons.mozilla.org/en-US/firefox/addon/thumbnail-grabber">
<img alt="Mozilla Add-on" src="https://img.shields.io/amo/users/thumbnail-grabber?color=orange&logo=Firefox%20Browser&logoColor=white&style=flat-square">
</a>
<a href="https://chrome.google.com/webstore/detail/thumbnail-grabber/gbpjnjieenljpncojgiboejmolbihdob">
<img alt="Chrome Web Store" src="https://img.shields.io/chrome-web-store/users/gbpjnjieenljpncojgiboejmolbihdob?color=4DB0F2&logo=Google%20Chrome&logoColor=white&style=flat-square">
</a>
<a href="https://addons.mozilla.org/en-US/firefox/addon/thumbnail-grabber">
<img alt="Mozilla Add-on" src="https://img.shields.io/amo/users/thumbnail-grabber?color=orange&logo=Firefox%20Browser&logoColor=white&style=flat-square">
</a>
</p>
<br>

Expand Down
15 changes: 15 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"linter": {
"rules": {
"style": {
"noUselessElse": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
}
}
7 changes: 2 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
const fs = require('fs');
const fs = require('node:fs');
const gulp = require('gulp');
const zip = require('gulp-zip');

gulp.task('zip', async () => {
const manifest = JSON.parse(fs.readFileSync('src/manifest.json'));
const zipFilename = `${manifest.name}-${manifest.version}-chrome-firefox.zip`;
console.log(`dist/${zipFilename}`);
return gulp
.src('build/**/*')
.pipe(zip(zipFilename))
.pipe(gulp.dest('dist'));
return gulp.src('build/**/*').pipe(zip(zipFilename)).pipe(gulp.dest('dist'));
});
Loading

0 comments on commit 7692891

Please sign in to comment.