xslate / p5-Text-Xslate

Scalable template engine for Perl5
https://metacpan.org/release/Text-Xslate
Other
121 stars 47 forks source link

Needs to divide PP module from Text::Xslate #212

Closed worthmine closed 7 months ago

worthmine commented 7 months ago

As you know, Text::Xslate is very useful module but it depends on XS. I knew Text::Xslate::PP is included in this Package and tried to install it alone.

  1. Actually, cpanm Text::Xslate::PP was transported to installing Text::Xslate.
  2. And I have tried copying Text::Xslate::PP to my test environment, it needs Text::Xslate::Utils.
  3. But Text::Xslate::Utils requires Text::Xslate, so Text::Xslate::PP itself requires Text::Xslate.
  4. so it's a kind of loops

How Can I use just only Text::Xslate::PP?

skaji commented 7 months ago

You can try

cpanm --pureperl Text::Xslate
worthmine commented 7 months ago

Thank you for early reply!