0.0.1 • Published 4 years ago

macros-loader v0.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

Preprocessor for Webpack

fork from git+https://github.com/jdmichaud/preprocessor-loader.git

why

'cause author stop maintaining this project, and my issue was left to open for a while

use

// webpack.config.js

{
  module: {
    loaders: [
      { test: /\.js$/,
        loader: 'pprocessor?config=pprocessor-loader.json',
        exclude: [/bower_components/, /node_modules/],
      },
    ],
  }
}

// pprocessor-loader.json

"macros": [
    {
      "declaration" : "LOG_INFO(message)",
      "definition" : "console.log(message + ' (__FILE__:__LINE__)');",
      "reg": "(?=src/)(.*)"
    },
]