![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.
@gen/rollup-plugin-generate-html
Advanced tools
Simple rollup plugin to generate html file. Currently html file will be placed in same directory as the output file. This plugin is inspired from [rollup-plugin-fill-html] (https://github.com/alwaysonlinetxm/rollup-plugin-fill-html).
npm install --save-dev @gen/rollup-plugin-generate-html
import html from '@gen/rollup-plugin-generate-html';
export default [{
input: 'main.js',
output: {
file: 'bundle.js',
format: 'umd'
},
plugins: [
html({
// specify template html (optional)
template: './index.html', // Default undefined
// output filename (optional)
filename: 'some.html', // Default index.html
// when specified, js src will use absolute path from publicPath (optional)
publicPath: 'dist' // Default undefined
})
]
}];
For cases when you want to generate html file per output. This should come in handy when you want to generate book example codes and such.
import glob from 'glob';
import html from '@gen/rollup-plugin-generate-html';
const configs = glob.sync('src/**/index.js').map(input => ({
input,
output: [{ file: input.replace(/^src/, 'dist'), format: 'umd' }],
plugins: [html()],
}));
export default configs;
FAQs
Simple html generation plugin for rollup
We found that @gen/rollup-plugin-generate-html 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.