This is an automated email from the ASF dual-hosted git repository.
matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new baaefd5 Change default value of nb.sass.libsass to TRUE, so modern
dart sass can be used by default. #1234
new 2388352 Merge pull request #3373 from t-oster/feature-sass-default
baaefd5 is described below
commit baaefd56828170f1c01db16ae3406c1e971f67e1
Author: Thomas Oster <[email protected]>
AuthorDate: Wed Dec 15 11:20:16 2021 +0100
Change default value of nb.sass.libsass to TRUE, so modern dart sass can be
used by default. #1234
---
ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java
b/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java
index 69bd892..0a97f22 100644
--- a/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java
+++ b/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java
@@ -51,9 +51,10 @@ public abstract class SassCli {
// #247890
/**
- * System property to be set to "true" if <tt>libsass</tt> should be used.
+ * System property to be set to "false" if <tt>libsass</tt> should be not
be used
+ * for legacy RubySass implementation
(https://github.com/apache/netbeans/pull/1234)
*/
- private static final boolean USE_LIBSASS =
Boolean.getBoolean("nb.sass.libsass"); // NOI18N
+ private static final boolean USE_LIBSASS =
Boolean.parseBoolean(System.getProperty("nb.sass.libsass", "true")); // NOI18N
// version of the compiler set in ide options
@NullAllowed
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists