{"library":"rollup-plugin-html-entry","title":"rollup-plugin-html-entry","description":"Use HTML files as entry points in Rollup bundles (v0.3.0, last release 2018-04-06, maintenance mode). Traverses HTML files and HTML imports, combining all scripts found, with optional output of HTML files stripped of <script> tags. Similar to rollup-plugin-multi-entry but for HTML-based entry. Requires Rollup >=0.48.0. Not actively maintained; consider alternatives.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-html-entry"],"cli":null},"imports":["import htmlEntry from 'rollup-plugin-html-entry';"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport htmlEntry from 'rollup-plugin-html-entry';\n\nexport default {\n  input: 'src/**/*.html',\n  plugins: [\n    htmlEntry({\n      include: ['src/**/*.html'],\n      exclude: ['src/excluded.html'],\n      external: ['src/lazy.html'],\n      output: 'dist',\n      exports: false\n    })\n  ],\n  output: {\n    dir: 'dist',\n    format: 'esm'\n  }\n};\n","lang":"javascript","description":"Rollup configuration using rollup-plugin-html-entry with include/exclude/external globs, output dir for cleaned HTML, and exports:false.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}