![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
snowpack-plugin-sharp
Advanced tools
Use sharp to optimize your images in Snowpack. This plugin will only transform images in
production
.
$ npm i -D snowpack-plugin-sharp sharp
const sharp = require("sharp");
// snowpack.config.js
module.exports = {
plugins: [
[
"snowpack-plugin-sharp",
{
transformers: [
{
fileExt: ".jpg",
apply: (file) =>
sharp(file).jpeg({
quality: 50,
chromaSubsampling: "4:4:4",
}),
},
],
},
],
],
};
Optionally, it is possible to create a second Image with 'preview-' prefix in the filename. This can be useful for generating low quality images for instance.
{
fileExt: ".webp",
withPreview: (file) => sharp(file).webp({ quality: 1 }),
apply: (file) =>
sharp(file).webp({
quality: 60,
}),
}
While this plugin is useful in the build step, handling the image correctly on the Web is the other side of the coin. This library progressive-picture could be helpful in this case.
FAQs
Use sharp to optimize your images in Snowpack
We found that snowpack-plugin-sharp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.