Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
Fix typo, update plugin and dart sass versions
  • Loading branch information
cleydyr authored Dec 29, 2024
1 parent c92ec41 commit 47d67ab
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ A Maven plugin that allows to compile SASS using Dart Sass
<plugin>
<groupId>io.github.cleydyr</groupId>
<artifactId>dart-sass-maven-plugin</artifactId>
<version>1.3.1</version>
<version>1.5.0</version>
<configuration>
<!-- use a fixed version of dart-saas to ensure reproducible builds -->
<version>1.83.0</version>
</configuration>
<executions>
<execution>
<id>generate-css-using-sass</id>
Expand Down Expand Up @@ -67,7 +71,7 @@ Dart Sass Maven Plugin will determine the latest Dart Sass version available on
## Offline operation

This plugin included all released archives for a given Dart Sass version in previous versions. However, starting from version 1.0.0, this plugin will download the latest release of Dart Sass if it's not found in the temporary folder or in the cached files' directory. Should this plugin be used in an air-capped environment, you _must_ provide a release archive inside the cached files directory and at least pin the Dart Sass' release version with the `<version>` parameter. The release archive _must_ be a file named `release` on the subpath `<os>`/`<arch>`/`<version>`/ inside the cached files' directory.
This plugin included all released archives for a given Dart Sass version in previous versions. However, starting from version 1.0.0, this plugin will download the latest release of Dart Sass if it's not found in the temporary folder or in the cached files' directory. Should this plugin be used in an air-gapped environment, you _must_ provide a release archive inside the cached files directory and at least pin the Dart Sass' release version with the `<version>` parameter. The release archive _must_ be a file named `release` on the subpath `<os>`/`<arch>`/`<version>`/ inside the cached files' directory.

## Proxy connections

Expand Down

0 comments on commit 47d67ab

Please sign in to comment.