Package detail

rollup-plugin-memory

TrySound40.9kMITdeprecated3.0.0

Use https://github.com/rollup/rollup-plugin-virtual instead

Load entry from memory

rollup-plugin, memory, string, load

readme

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

changelog

Changelog

2.0.0

  • Consistent entry and plugin options format

1.0.0

  • Initial release