posthtml-hashmanifest

0.1.3 • Public • Published

posthtml-hashmanifest

PostHTML plugin for rewriting static asset paths given a hash manifest

The manifest is compatible with the one emitted by tools like rollup-plugin-entrypoint-hashmanifest and hashmark. Includes an option to rebase the manifest paths before processing.

npm install -D posthtml-hashmanifest

Usage

entrypoint.hashmanifest.json

{
  "css/style.css": "css/style-d8a08eb5.css",
  "./js/script.js": "./js/script-ae52c04e.js",
  "img/img.png": "img/img-e7a03cbf.png"
}

module

import posthtml from 'posthtml'
import processHashManifest from 'posthtml-hashmanifest'

const html = `
<html>
  <style href="css/style.css">
  <script src="./js/script.js"></script>
  <img src="img/img.png">
</html>
`

posthtml([
  .use(processHashManifest())
  .process(html)
  .then(result => console.log(result))

output

<html>
  <style href="css/style-d8a08eb5.css">
  <script src="./js/script-ae52c04e.js"></script>
  <img src="img/img-e7a03cbf.png">
</html>

Options

{
  manifest: './hashmanifest.json',
  rebase: {
    'src': '.'
  }
}
  • manifest: Filepath of manifest to read from. Default ./entrypoint.hashmanifest.json.
  • rebase: Optional Object of manifest paths to rebase before processing.

Package Sidebar

Install

npm i posthtml-hashmanifest

Weekly Downloads

91

Version

0.1.3

License

MIT

Unpacked Size

7.58 kB

Total Files

8

Last publish

Collaborators

  • pinkhominid