Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

grunt-codekit

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-codekit

Grunt plugin that compiles Kit files

Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
10
-56.52%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-codekit

Grunt plugin for compiling the Kit language

NPM version Build Status Gittip

Getting Started

Install the plugin

npm install grunt-codekit --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-codekit');

The "codekit" task

Overview

In your project's Gruntfile, add a section named codekit to the data object passed into grunt.initConfig().

Usage Example

grunt.initConfig({
  codekit: {
    options: {
      // None yet
    },
    your_target: {
      files : {
        'index.html' : 'index.kit',
        'app.html' : 'app.kit',
      }
    },
  },
});

About the Kit language

The Kit language is a simple open source html templating language used in the commercial programs CodeKit and PrePros. It imports files into other html files and does simple variable substitution. This plugin makes it possible to compile these files using Grunt.

So far this project only supports compiling the Kit Language, but it might be extended in the future to also support the directives from CodeKit and PrePros for concatenating javascript files.

TODO

  • Release a functioning version on the NPM registry
  • Remove Python dependency (Yay!)
  • Support concatenation of javascript using the @codekit-append/prepend directives
  • Making the prepend/append directives user settable (means PrePros support)

Release History

  • 0.1.0 First release. Only compiling of Kit files supported. No framework
  • 0.2.0 Removed dependency on Python (yay!)
  • 0.3.0 Partials are now being excluded (thanks, @aral)

Keywords

gruntplugin

FAQs

Package last updated on 02 Jun 2014

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