1.0.2 • Published 6 years ago

webpack-mem-compile v1.0.2

Weekly downloads
96
License
MIT
Repository
github
Last release
6 years ago

webpack memory compile

Compile from a webpack config to a string in memory.

Install

npm install --save webpack-mem-compile

Use

Using a webpack config with an entry point:

import { webpackCompile } from 'webpack-mem-compile';

const code = await webpackCompile({
    webpack,
    config: {
        entry: 'foo.js';
    }
})

Using raw code:

import { webpackCompile } from 'webpack-mem-compile';

const code = await webpackCompile({
    webpack,
    code: `
        console.log('Hello World!');
    `
})