Skip to content

wvvwdev/rollup-plugin-string

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Converts text files to modules

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%