npm.io
0.1.9 • Published 6 years ago

@handledom/in-template-string-loader

Licence
CC0-1.0
Version
0.1.9
Deps
1
Size
12 kB
Vulns
0
Weekly
0

@handledom/in-template-string-loader

Build Status npm GitHub

A webpack loader that compiles Handledom templates in template strings at build time.

How to use

First, add @handledom/in-template-string-loader to a webpack config file:

npm install @handledom/in-template-string-loader --save-dev

In the webpack.config.js file, add this rule:

module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.(js|ts)$/,
        exclude: /node_modules/,
        use: "@handledom/in-template-string-loader"
      },
    ]
  }
};

Contribute

With VS Code, our recommanded plugin is:

  • ESLint - dbaeumer.vscode-eslint
  • Prettier - esbenp.prettier-vscode

Keywords