Skip to content

Commit 6dc9c76

Browse files
authored
Update README.md
1 parent 8b5b19c commit 6dc9c76

File tree

1 file changed

+19
-28
lines changed

1 file changed

+19
-28
lines changed

README.md

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,9 @@
44
[![Maven](https://img.shields.io/maven-central/v/de.inetsoftware/sass-compiler.svg)](https://mvnrepository.com/artifact/de.inetsoftware/sass-compiler)
55
[![JitPack](https://jitpack.io/v/i-net-software/sass-compiler.svg)](https://jitpack.io/#i-net-software/sass-compiler/master-SNAPSHOT)
66

7-
A pure Java implementation of the http://sass-lang.com compiler with the target to compile the scss sources of the [Bootstrap 5 framework](https://github.com/twbs/bootstrap) framework.
7+
A pure Java implementation of the http://sass-lang.com compiler with the target to compile the scss sources of the [Bootstrap 5 framework](https://github.com/twbs/bootstrap) framework.
88

9-
Tests
10-
=====
11-
There is an extensive test suite consisting of source scss input and expected
12-
css output imported from the sass-lang project. Today the features required by
13-
the tests in src/test/resources/sasslang are fully implemented while the
14-
tests in src/test/resources/sasslangbroken are currently expected to fail.
15-
16-
Contributing
17-
====
18-
Your contributions are more than welcome. For example, if you want
19-
to compile sources other than Bootstrap. Every PR should also contain tests.
20-
21-
Testing Snapshot
22-
====
23-
If you want test the latest snapshot then you can checkout or use [JitPack](https://jitpack.io/#i-net-software/sass-compiler).
24-
25-
For example with Gradle:
26-
```
27-
repositories {
28-
mavenCentral()
29-
maven { url 'https://jitpack.io' }
30-
}
31-
32-
dependencies {
33-
implementation 'com.github.i-net-software:sass-compiler:master-SNAPSHOT'
34-
}
35-
```
9+
You can find the project's [homepage](https://github.com/i-net-software/sass-compiler) on GitHub.
3610

3711
Dependencies
3812
====
@@ -66,3 +40,20 @@ scss.compile( ScssContext.UrlMode.ABSOLUTE );
6640
String css = scss.printState();
6741
...
6842
```
43+
44+
Testing Snapshot
45+
====
46+
If you want test the latest snapshot then you can checkout or use [JitPack](https://jitpack.io/#i-net-software/sass-compiler).
47+
48+
For example with Gradle:
49+
```
50+
repositories {
51+
mavenCentral()
52+
maven { url 'https://jitpack.io' }
53+
}
54+
55+
dependencies {
56+
implementation 'com.github.i-net-software:sass-compiler:master-SNAPSHOT'
57+
}
58+
```
59+

0 commit comments

Comments
 (0)