template-pic-loader

2.2.1 • Public • Published

TemplatePicLoader


If You Has Any Bugs To Tell Author, Please Jump To Github
If This Loader Is Helpful For You, Please GIVE ME A STAR

FEATURE


  1. solve the template link source like hbs, html, with Webpack ,
  2. Solve the like pictures source request in up-template which request like tags named 'img' or 'link?rel=shorcut icon', for Webpack
  3. It depends on url-loader

TODO

Support hash

HOW TO USE


Template

< link rel="shortcut icon" href="xxxxxx" >
< img src="__imgs/4.jpg" >
...

Webpack Config

rules: [
    ...,
    {
    test: /\.hbs$/,
    exclude: /node_modules/,
    use: [
      {
        loader: 'template-pic-loader',
        options: {
          condition: [ 'link?rel=icon:href', 'img:src' ],
          extract: true,
          filename: '[name].[ext]',
          minimize: true
        }
      }
    ]
  },
    ...
]

Options


filename : String
Output file information.

condition Array
Tell loader which tags and tag's attr need to bundle,For details, please check up-demo.

extract: Boolean Extract source based on filename or not.

minimize: Boolean Minimize the source or not.

minopt: Object Work when minimize is true, like minimize package options, you can check it.

/template-pic-loader/

    Package Sidebar

    Install

    npm i template-pic-loader

    Weekly Downloads

    2

    Version

    2.2.1

    License

    MIT

    Unpacked Size

    186 kB

    Total Files

    12

    Last publish

    Collaborators

    • horseslee