This repository was archived by the owner on Feb 10, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +35
-4
lines changed Expand file tree Collapse file tree 4 files changed +35
-4
lines changed Original file line number Diff line number Diff line change 1+ sudo : false
2+ language : go
3+
4+ go :
5+ - 1.9.x
6+ - 1.10.x
7+ - tip
8+
9+ matrix :
10+ allow_failures :
11+ - go : tip
12+
13+ before_script :
14+ - go get -u github.com/golang/lint/golint
15+
16+ script :
17+ - go test ./... -race
18+
19+ after_script :
20+ - test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
21+ - test -z "$(golint ./... | tee /dev/stderr)"
22+ - go vet ./...
23+
24+ os :
25+ - linux
26+ - osx
27+
28+ notifications :
29+ email : false
Original file line number Diff line number Diff line change 1- # go-tocss
1+
2+ [ ![ Build Status] ( https://travis-ci.org/bep/go-tocss.svg?branch=master )] ( https://travis-ci.org/bep/go-tocss )
3+
4+
25WORK IN PROGRESS
Original file line number Diff line number Diff line change 33// Use of this source code is governed by an MIT-style
44// license that can be found in the LICENSE file.
55
6- // Package libsass provides a SASS ans SCSS transpiler to CSS
7- // using github.com/wellington/go-libsass/libs.
6+ // Package libsass a SCSS transpiler to CSS using github.com/wellington/go-libsass/libs.
87package libsass
98
109import (
Original file line number Diff line number Diff line change 33// Use of this source code is governed by an MIT-style
44// license that can be found in the LICENSE file.
55
6- // Package sass provides options for SASS transpilers. Note that there are no
6+ // Package scss provides options for SCSS transpilers. Note that there are no
77// current pure Go SASS implementation, so the only option is CGO and LibSASS.
88// But hopefully, fingers crossed, this will happen.
99package scss
You can’t perform that action at this time.
0 commit comments