![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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.
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
The npm package @gen/rollup-plugin-generate-html receives a total of 2 weekly downloads. As such, @gen/rollup-plugin-generate-html popularity was classified as not popular.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.