|
4 | 4 | [](https://mvnrepository.com/artifact/de.inetsoftware/sass-compiler)
|
5 | 5 | [](https://jitpack.io/#i-net-software/sass-compiler/master-SNAPSHOT)
|
6 | 6 |
|
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. |
8 | 8 |
|
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. |
36 | 10 |
|
37 | 11 | Dependencies
|
38 | 12 | ====
|
@@ -66,3 +40,20 @@ scss.compile( ScssContext.UrlMode.ABSOLUTE );
|
66 | 40 | String css = scss.printState();
|
67 | 41 | ...
|
68 | 42 | ```
|
| 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