npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gulp-liquidr

v2.0.1

Published

gulp liquidjs static files render

Downloads

20

Readme

Gulp Liquidr

Greenkeeper badge

npm npm Build Status GitHub issues GitHub contributors David David Dev DUB

gulp plugin for LiquidJs, current project https://github.com/icai/gulp-liquidr

Usage

Install

npm install gulp-liquidr --save

Options

The full list of options for Liquid() is listed as following:

  • root is a directory or an array of directories to resolve layouts and includes, as well as the filename passed in when calling .renderFile(). If an array, the files are looked up in the order they occur in the array. Defaults to ["."]

  • extname is used to lookup the template file when filepath doesn't include an extension name. Eg: setting to ".html" will allow including file by basename. Defaults to "".

  • cache indicates whether or not to cache resolved templates. Defaults to false.

  • dynamicPartials: if set, treat <filepath> parameter in {%include filepath %}, {%layout filepath%} as a variable, otherwise as a literal value. Defaults to true.

  • strict_filters is used to enable strict filter existence. If set to false, undefined filters will be rendered as empty string. Otherwise, undefined filters will cause an exception. Defaults to false.

  • strict_variables is used to enable strict variable derivation. If set to false, undefined variables will be rendered as empty string. Otherwise, undefined variables will cause an exception. Defaults to false.

  • trim_tag_right is used to strip blank characters (including , \t, and \r) from the right of tags ({% %}) until \n (inclusive). Defaults to false.

  • trim_tag_left is similiar to trim_tag_right, whereas the \n is exclusive. Defaults to false. See [Whitespace Control][whitespace control] for details.

  • trim_value_right is used to strip blank characters (including , \t, and \r) from the right of values ({{ }}) until \n (inclusive). Defaults to false.

  • trim_value_left is similiar to trim_value_right, whereas the \n is exclusive. Defaults to false. See [Whitespace Control][whitespace control] for details.

  • greedy is used to specify whether trim_left/trim_right is greedy. When set to true, all consecutive blank characters including \n will be trimed regardless of line breaks. Defaults to true.

The above is All Liquidjs initilization options.


  • tags is used to Liquidjs instance to call registerTag

  • filters is used to Liquidjs instance to call registerFilter

  • data is used to Liquidjs instance to call parseAndRender with stream

by the way, extname default is extname: '.html'.

Demo

gulp.task('example', () => {
  return gulp.src([
    'example/views/**/*.html',  // scan
    '!example/views/_includes/**/*.html',  // filter
    '!example/views/_layouts/**/*.html' // filter
  ])
  .pipe(liquidjs({
    root: [resolve('views/'), resolve('views/_includes/'), resolve('views/_layouts/')],
    filters: {
      'add': (initial, arg1, arg2) => initial + arg1 + arg2
    },
    tags: {
      'upper': {
        parse: function (tagToken/*, remainTokens*/) {
          this.str = tagToken.args; // name
        },
        render: function (scope/*, hash*/) {
          var str = Liquid.evalValue(this.str, scope); // 'alice'
          return Promise.resolve(str.toUpperCase()); // 'Alice'
        }
      }
    }
  }))
  .pipe(gulp.dest('.tmp'))
})

License

Copyright (c) 2017 Terry Cai. Licensed under the MIT license.