
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@brixtol/rollup-html
Advanced tools
Hard fork of @rollup/html with some adjustments to better fit bundle processing
Hard fork of the @rollup/plugin-html plugin with some minor adjustment to better fit the monorepo development environment.
We need some additional control over the generated HTML, minor adjustments to source.
pnpm add @brixtol/rollup-html --save-dev
import html from '@brixtol/rollup-html';
export default {
input: 'src/index.js',
output: {
dir: 'output',
format: 'cjs'
},
plugins: [
html({
title: 'App Title',
attributes: {
html: { lang: 'en' }
},
styles: [
{
fileName: 'https://use.typekit.net/xxx.css',
place: 'before'
}
],
sprite: {
input: './src/svg/files',
options: {
cleanDefs: true,
inline: true,
svgAttrs: {
class: 'd-none',
style: 'position: absolute; height: 0 !important; width: !important;'
}
}
},
publicPath: '/',
minify: {
collapseWhitespace: true,
html5: true,
collapseInlineTagWhitespace: true
},
nodes: {
div: {
id: 'app'
}
},
innerHTML: `
<form name="contact-form" netlify netlify-honeypot="bot-field" hidden>
<input type="text" name="name">
<input type="email" name="email">
<input type="tel" name="phone">
<textarea name="message"></textarea>
</form>
`,
links: [
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: '/apple-touch-icon.png'
},
{
rel: 'icon',
type: 'image/png',
sizes: 'image/png',
href: '/favicon-32x32.png'
},
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: '/favicon-16x16.png'
},
{
rel: 'mask-icon',
color: '#4c4c4c',
href: '/safari-pinned-tab.svg'
},
{
rel: 'manifest',
href: '/site.webmanifest'
}
],
meta: [
{
charset: 'utf-8'
},
{
name: 'viewport',
content: 'minimum-scale=1, initial-scale=1, width=device-width'
},
{
name: 'description',
content: 'Some Description'
},
{
name: 'google-site-verification',
content: 'xxxxx'
},
{
name: 'msapplication-TileColor',
content: '#ffffff'
},
{
name: 'theme-color',
content: '#ffffff'
}
]
})
]
};
We ♡ open source!
FAQs
Hard fork of @rollup/html with some adjustments to better fit bundle processing
The npm package @brixtol/rollup-html receives a total of 1 weekly downloads. As such, @brixtol/rollup-html popularity was classified as not popular.
We found that @brixtol/rollup-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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.