modulepackage
0.0.0-20170821073536-9f0400998d19
Repository: https://github.com/kib357/less-go.git
Documentation: pkg.go.dev
# README
less-go
THIS PROJECT IS NO LONGER MAINTAINED, feel free to fork and use as boilerplate for further usages
Builds CSS using original Less compiler and Duktape embeddable Javascript engine
Status
This project is a work-in-progress, we accept pull requests.
Installation
go get github.com/kib357/less-go
Command Line usage
cd $GOPATH/src/github.com/kib357/less-go/lessc
go get
go build
./lessc --input="inputFile" --output="outputFile"
./lessc -i inputFile -o outputFile
Examples:
./lessc --input="./styles.less" --output="./styles.css"
./lessc -i styles.less -o styles.css
More about usage you can see in cli help:
./lessc -h
Programmatic usage
import "github.com/kib357/less-go"
func main() {
err := less.RenderFile("./styles.less", "./styles.css", map[string]interface{}{"compress": true})
}
Function reference
RenderFile(input, output string, mods ...map[string]interface{}) error
Renders Less and generates output CSS.
SetReader(customReader Reader)
type Reader interface {
ReadFile(string) ([]byte, error)
}
Sets a custom reader for .less files. You can use it to replace standard input from file system to another. Example:
type LessReader struct{}
var lessFiles = map[string][]byte{"styles": []byte{".class { width: (1 + 1) }"}}
func (LessReader) ReadFile(path string) ([]byte, error) {
lessFile, ok := lessFiles[path]
if !ok {
return "", errors.New("path not found")
}
return lessFile, nil
}
func main() {
less.SetReader(LessReader)
...
}
SetWriter(customWriter Writer)
type Writer interface {
WriteFile(string, []byte, os.FileMode) error
}
Analogue of custom reader, but for output CSS.
Current limitations
Because of using C Javascript engine, cross compilation not supported. Not tested on Windows.
CLI interface doesnt support options
# Packages
No description provided by the author
# Functions
Asset loads and returns the asset for the given name.
AssetDir returns the file names below a certain directory embedded in the file by go-bindata.
AssetInfo loads and returns the asset info for the given name.
AssetNames returns the names of the assets.
MustAsset is like Asset but panics when Asset would return an error.
No description provided by the author
RestoreAsset restores an asset under the given directory.
RestoreAssets restores an asset under the given directory recursively.
No description provided by the author
No description provided by the author