rollup-plugin-memory

Load entry from memory


Keywords
rollup-plugin, memory, string, load, preload, entry
License
MIT
Install
npm install rollup-plugin-memory@1.0.0

Documentation

rollup-plugin-memory Build Status

Deprecated: use rollup-plugin-virtual instead

Load entry from memory

Install

npm i rollup-plugin-memory -D

Usage

import { rollup } from 'rollup';
import memory from 'rollup-plugin-memory';

rollup({
    entry: {
        path: 'main.js',
        contents: 'console.log("some code");'
    },
    plugins: [
        memory()
    ]
});

path is a string like normal entry. contents is a string or Buffer with preloaded content.

License

MIT © Bogdan Chadkin