Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

is there a karma preprocessor for jade files? #572

Closed
fschwiet opened this issue Jun 13, 2013 · 2 comments
Closed

is there a karma preprocessor for jade files? #572

fschwiet opened this issue Jun 13, 2013 · 2 comments

Comments

@fschwiet
Copy link

I was wondering if there is a karma preprocessor for jade files?

@fschwiet
Copy link
Author

I'm pretty sure there is not, so I'm closing this out. I did write something that seems to be working for me, though I'm not sure if the solution is general enough that it'd work for anyone wanting to use jade. I do look forward to being able to inject the preprocessor in the manner described here: #565

This is working for me though, in case someone else searches for the same:

var fs = require("fs");
var jade = require("jade");

module.exports = function(content, file, basePath, done) {

    file.path = file.path + '.js';

    var jadeOptions = {
        filename: file.originalPath,
        client: true,
        pretty: true
    };

    done("define(['jadeRuntime'], function(jade) { return " + jade.compile(content, jadeOptions) +"; });");
};

Besides using the jade module, I am also using the jade-amd module to package up jade's runtime.js so it can be included as well.

@tony-kerz
Copy link

i know this is old, but just in case you hadn't seen this:
https://github.com/ojdx/karma-jade-preprocessor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants