Skip to content

modulor-js/modulor-html-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

modulor-html-loader

modulor-html loader for webpack

turns

<span>${scope.value}</span>

into

const { html, stopNode, render } = require('@modulor-js/html');
module.exports = (scope, $container) => html`
  <span>${scope.value}</span>
`.render($container);
`

Usage

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.modulor.html?$/,  //can be any extension here
        use: [
          {
            loader: 'babel-loader'
          },
          {
            loader: '@modulor-js/html-loader'
          },
        ]
      },
      ...
    ],
  },
  ...
};

Usage with jest

create file transformer:

const modulorHtmlLoader = require('@modulor-js/html-loader');

module.exports = {
  process(src, filename, config, options){
    return modulorHtmlLoader.call({
      query: {
        variable: 'scope'
      }
    }, src);
  }
};

then use it in jest config

//in package.json
...
jest: {
  ...
  "transform": {
    "^.+\\.modulor.html$": "<rootDir>/path/to/your/transformer.js",
  },
  ...
}
...

Options

variable: scope variable name (default scope)

About

modulor-html loader for webpack

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published