NAME

CSS::Watcher::ParserLess - Extract classes, ids from .less files

SYNOPSIS

use CSS::Watcher::ParserLess;
my $parser = CSS::Watcher::Parser->new()

# return requiries - ref array of dependencies
my ($hclasses, $hids, $requiries) = parser->parse_less (<<LESS)
@import "foo.less"
LESS
;
# $requiries = ["foo.less"]

DESCRIPTION

Use lessc for compile less and parse css result by CSS::Watcher::Parser.

AUTHOR

Olexandr Sydorchuk (olexandr.syd@gmail.com)

COPYRIGHT AND LICENSE

Copyright (C) 2014 by Olexandr Sydorchuk

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.2 or, at your option, any later version of Perl 5 you may have available.