Code Monkey home page Code Monkey logo

Comments (7)

lukeed avatar lukeed commented on June 11, 2024 1

Also, this looks like it may still be compatible: https://github.com/frantic1048/fly-pug

I haven't tested that either (I don't use Pug) – but the majority of old Fly plugins (previous name) still work in this release. I'm slowly improving & extracting a new Taskr & Taskr ecosystem. It's happening on an as-needed basis atm.

Hope that helps!

from taskr.

sadeghbarati avatar sadeghbarati commented on June 11, 2024 1

works with fly-pug plugin:

'use strict';

const { join } = require('path')
const pug = require('pug');



module.exports = function (task, utils) {
    
    task.plugin('pug', {every: true}, function * (file, opts) {
        // console.log(join(file.dir, file.base));
        
        // if (!opts.filename) {
        //     opts.filename = join(file.dir, file.base)
        // }

        const html = pug.render(file.data.toString(), {
            filename: join(file.dir, file.base),
            pretty: true
        });

        file.data = Buffer.from(html);
        file.base = file.base.replace(/\.pug$/i, '.html');
    });
};

from taskr.

lukeed avatar lukeed commented on June 11, 2024 1

Cool, glad you got it working 👍
It's practically the same thing I posted in my code snippet – except that filename is a require option for pug. That should have been the only reason why my snippet failed in its posted form.

from taskr.

sadeghbarati avatar sadeghbarati commented on June 11, 2024

that speed of compiling other extensions like sass and es6 buble is super fast
only plugin missing is pug

from taskr.

lukeed avatar lukeed commented on June 11, 2024

Hey, you should be able to do something like this:

const pug = require('pug');

exports.pug = function * (task) {
	yield task.source('src/*.pug')
		.run({
			every: true,
			*func(file) {
				const html = pug.render(file.data.toString(), {
					/// pug options
				});

				file.data = Buffer.from(html);
				file.base = file.base.replace(/\.pug$/i, '.html');
			}
		})
		.target('dist')
}

It's an "inline plugin" – i haven't tested it though

from taskr.

sadeghbarati avatar sadeghbarati commented on June 11, 2024

I think wrote similar code
if I use include or extend in file like

index.pug:

  body
    include header
    h1 sample pug file

generated file must be index.html but result is
index.html and header.html

I'll check you code and say result here
thanks

from taskr.

sadeghbarati avatar sadeghbarati commented on June 11, 2024

I test your codes threw this error in the console:
it default failed because the "filename" option is required to use includes and extends with "relative" paths at undefined line 9

at line 9:
include ./includes/header.pug

from taskr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.