shifteee / webpack-loader-api-exec

Replace this.exec inside webpack loader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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;
}

About

Replace this.exec inside webpack loader

License:MIT License


Languages

Language:JavaScript 100.0%