0.1.0 • Published 7 years ago

inline-template-loader v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

inline-template-loader

Install

npm install inline-template-loader

Usage

// webpack.conf.js

module: {
  rules:[{
    test: /\.js$/,
    loader: 'inline-template-loader'
  }]
}

Output

// index.js
function foo(){
  return __inline('./template.html');
}
// template.html
<div class="template">
  <h1>HelloWorld</h1>
</div>
// output.js
function foo(){
  return '<div class="template"><h1>HelloWorld</h1></div>';
}

options

// webpack.conf.js

module: {
  rules:[{
    test: /\.js$/,
    loader: 'inline-template-loader',
    options: {
      pattern: /__template(/    // 正则
      replcement: function(m){  // 替换方法
        return m.slice(1);
      }
    }
  }]
}

License

MIT