Skip to content

jackfrankland/rollup-plugin-template-literal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rollup-plugin-template-literal

Taggable template literals

Installation

npm install --save-dev rollup-plugin-template-literal

Usage

rollup.config.js:

import templateLiteral from 'rollup-plugin-template-literal';

export default {
  input: 'index.js',
  plugins: [
    templateLiteral({
      include: '**/*.js.html', // required
      exclude: '**/*.js', // optional
      tags: 'optional' // one of 'off', 'optional', 'required'; default: 'required'
      propsKey: 'props' // optional; default: 'props'
    }),
  ],
};

template.js.html (propsKey option set to 'props'):

<p>${props.message}</p>

index.js (without using tag; tags option 'off' or 'optional'):

import template from './template.js.html';

const props = {
  message: 'oh hi',
};

const div = document.createElement('div');
div.innerHTML = template(
  props // will be accessible in template string as propsKey
);

// result: div.innerHTML = '<p>oh hi</p>'

index.js (using tag; tags option 'optional' or 'required'):

import { html } from 'common-tags';
import template from './template.js.html';

const props = {
  message: 'oh hi',
};

const div = document.createElement('div');
div.innerHTML = template(
  props,  // will be accessible in template string via propsKey
  html // template string will be run through the passed tag function
);

// result: div.innerHTML = '<p>oh hi</p>'

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published