Socket
Book a DemoInstallSign in
Socket

@aller/mustachejs-partial-loader

Package Overview
Dependencies
Maintainers
14
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aller/mustachejs-partial-loader

Mustache.js partial loader for webpack

latest
Source
npmnpm
Version
0.3.1
Version published
Weekly downloads
0
Maintainers
14
Weekly downloads
 
Created
Source

mustachejs-partial-loader

A loader for webpack that works with mustachejs-loader package to load in partials from a directory.

Getting started

To begin, you'll need to install mustache, mustachejs-partial-loader and mustachejs-loader:

Yarn

$ yarn add --dev mustache mustachejs-loader mustachejs-partial-loader

Npm

$ npm install mustache mustachejs-loader mustachejs-partial-loader --save-dev

Webpack config

module: {
  rules: [
    {
      test: /\.mustache$/,
      loader: [
        '@aller/mustachejs-loader',
        '@aller/mustachejs-partial-loader',
      ]
    }
  ]
}

Options

path

Type: string
Default: ./partials

Decides where to look for partials

recurse

Type: boolean
Default: false

If set it will recursivly look for partials in the specified location

suffix

Type: string
Default: .mustache

What the file ending should be

modifyTemplateKey

Type: [[string | regexp, string],...] Default: []

If added you can modify the name of the key for your templates.

Instead of asking for

{{ > ./partials/header/site.mustache }}

you can add a modifiers

modifyTemplateKey: [
  ['./partials/', ''],
  [/\.mustache$/, '']
]

and change it to

{{ > header/site }}

Keywords

webpack

FAQs

Package last updated on 05 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts