https://github.com/ogonkov/fest-webpack-loader
Webpack loader for fest (template engine from Mail.ru)
https://github.com/ogonkov/fest-webpack-loader
fest webpack-loader
Last synced: 2 months ago
JSON representation
Webpack loader for fest (template engine from Mail.ru)
- Host: GitHub
- URL: https://github.com/ogonkov/fest-webpack-loader
- Owner: ogonkov
- License: mit
- Created: 2017-12-29T09:23:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-30T21:07:40.000Z (over 4 years ago)
- Last Synced: 2024-04-29T19:06:59.627Z (12 months ago)
- Topics: fest, webpack-loader
- Language: JavaScript
- Homepage: https://ogonkov.github.io/fest-webpack-loader/
- Size: 188 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm package][npm-image]][npm-url]
[![Coverage Status][coverage-image]][coverage-url]
[![node][node]][node-url]
[![Build Status][build-image]][build-url]
[![Dependencies Status][david-image]][david-url]# Fest templates loader for Webpack
This Webpack loader compiles [Fest](https://github.com/mailru/fest) templates.
> For Webpack 4.x use loader versions 2.x
Loader is trying to build dependencies tree by walking through
``, `` and `` tags of template.When loader emits warning, that means that XML parser failed to parse a file
and get dependencies from it. You probably would like to fix file syntax, to
have complete experience with webpack rebuild on change.> :exclamation: Using builtin beautifier could break ES syntax in scripts, that is inlined
> via ``. Consider switching off `beautify` option.## Install
```bash
npm install --save-dev fest-webpack-loader
```## Usage
All referenced templates compiles to ES modules.```js
import template from './template.xml';
```**webpack.config.js**
```js
module.exports = {
module: {
rules: [
{
test: /\.xml$/,
use: [
{
loader: 'fest-webpack-loader'
}
]
}
]
}
}
```## Options
|Name|Type|Default|Description|
|:--:|:--:|:-----:|:----------|
|**`beautify`**|`{Boolean}`|`false`|Beautify compiled template. Built-in `fest` beautifier breaks ES syntax.|
|**`trackDependencies`**|`{Boolean}`|`true` for development mode otherwise `false`|Enable template dependencies tracking|
|**`module`**|`{String}`|`es`|Compiled template module type. `es` or `cjs`.|[npm-image]:https://img.shields.io/npm/v/fest-webpack-loader.svg
[npm-url]:http://npmjs.org/package/fest-webpack-loader
[coverage-image]:https://coveralls.io/repos/github/ogonkov/fest-webpack-loader/badge.svg?branch=master
[coverage-url]:https://coveralls.io/github/ogonkov/fest-webpack-loader?branch=master
[node]: https://img.shields.io/node/v/fest-webpack-loader.svg
[node-url]: https://nodejs.org
[build-image]:https://github.com/ogonkov/fest-webpack-loader/workflows/Tests/badge.svg?branch=master
[build-url]:https://github.com/ogonkov/fest-webpack-loader/actions?query=branch%3Amaster+workflow%3ATests
[david-image]:https://david-dm.org/ogonkov/fest-webpack-loader/status.svg
[david-url]:https://david-dm.org/ogonkov/fest-webpack-loader