Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 250 Bytes

File metadata and controls

13 lines (10 loc) · 250 Bytes

Webpack plugin for adding entries with a string

Usage:

var StringEntryPlugin = require('string-entry-webpack-plugin')

...
plugins: [
	new StringEntryPlugin({
		'fileName.js': 'File contents',
		'secondFile.js': 'some more contents'
	}),
]