{"library":"rollup-plugin-entrypoint-hashmanifest","title":"rollup-plugin-entrypoint-hashmanifest","description":"A Rollup plugin that generates a hash manifest JSON file for each entrypoint, mapping original entry filenames to their hashed output filenames. Version 0.1.2, last updated in 2018, with no recent releases. It produces a manifest compatible with hashmark and injectassets tools. Alternatives include @rollup/plugin-manifest or custom Rollup hook scripts, but this plugin is simpler for entrypoint-only hashing.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-entrypoint-hashmanifest"],"cli":null},"imports":["import entrypointHashmanifest from 'rollup-plugin-entrypoint-hashmanifest'","import entrypointHashmanifest from 'rollup-plugin-entrypoint-hashmanifest'","import type { RollupPluginEntrypointHashmanifestOptions } from 'rollup-plugin-entrypoint-hashmanifest'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport entrypointHashmanifest from 'rollup-plugin-entrypoint-hashmanifest';\n\nexport default {\n  input: ['src/main.js', 'src/worker.js'],\n  output: {\n    dir: 'dist',\n    format: 'es',\n    entryFileNames: '[name]-[hash].js',\n    chunkFileNames: '[name]-[hash].js'\n  },\n  plugins: [\n    entrypointHashmanifest({\n      manifestName: 'my-manifest.json'\n    })\n  ]\n};","lang":"javascript","description":"Configures Rollup to emit a hash manifest file mapping entrypoints to their hashed outputs.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}