Socket
Socket
Sign inDemoInstall

templatizer

Package Overview
Dependencies
Maintainers
3
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

templatizer - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "templatizer",
"description": "Simple solution for compiling jade templates into vanilla JS functions for blazin' fast client-side use.",
"version": "1.1.0",
"version": "1.1.1",
"author": "Henrik Joreteg <henrik@andyet.net>",

@@ -6,0 +6,0 @@ "bin": "./bin/cli",

# templatizer.js
[![Build Status](https://travis-ci.org/HenrikJoreteg/templatizer.png?branch=master)](https://travis-ci.org/HenrikJoreteg/templatizer)
[![NPM](https://nodei.co/npm/templatizer.png?downloads=true)](https://nodei.co/npm/templatizer/)
Simple solution for compiling jade templates into vanilla JS functions for blazin' fast client-side use.

@@ -4,0 +8,0 @@

@@ -82,2 +82,6 @@ var jade = require('jade');

var item = file.replace(path.resolve(templateDirectory), '').slice(1);
// Skip hidden files
if (item.charAt(0) === '.' || item.indexOf(pathSep + '.') !== -1) {
return;
}
if (path.extname(item) === '' && path.basename(item).charAt(0) !== '.') {

@@ -84,0 +88,0 @@ if (folders.indexOf(item) === -1) folders.push(item);

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc