rollup-plugin-hjson

0.0.2 • Public • Published

rollup-plugin-string Build Status

Converts text files to modules:

import tpl from "./tpl.html";
console.log(`Template for render: ${tpl}`);

Installation

npm i rollup-plugin-string -D

Usage

import { rollup } from "rollup";
import { string } from "rollup-plugin-string";

rollup({
  entry: "main.js",
  plugins: [
    string({
      // Required to be specified
      include: "**/*.html",

      // Undefined by default
      exclude: ["**/index.html"]
    })
  ]
});

License

MIT © Bogdan Chadkin

Package Sidebar

Install

npm i rollup-plugin-hjson

Weekly Downloads

0

Version

0.0.2

License

MIT

Unpacked Size

3.41 kB

Total Files

5

Last publish

Collaborators

  • iltimasd