0.1.1 • Published 6 years ago

webpack-loader-api-exec v0.1.1

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

Webpack-loader-api-exec

Since webpack team deprecate usage this.exec inside Loader Api we need in something that could execute code string as normal javascript. This module provide similar functionality

Usage

const exec = require('webpack-loader-api-exec');

module.exports = function(code) {
    const ctx = {}
    const opts = {}
    const content = (typeof code === 'string')
        ? exec(code, opts, ctx)
        : code;

    // process content
    // ...

    return result;
}