Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hraška <virpo.san@gmail.com>2017-06-16 00:28:33 +0300
committerPeter Hraška <virpo.san@gmail.com>2017-06-16 00:28:33 +0300
commitac97cbdcdccd79ab967157f1bfaf74427c06b830 (patch)
treeb37c35d6929413dcdd2f3a578b14f4f2173d0012 /README.md
parent0d19bfe82fdb38ad4e4cdef9fcfd1d3010a677e3 (diff)
Update recommended SCSS compilation settings
- update unix command to the most convenient one - found out, that in windows there is unhealthy amount of ways, how you can watch scss files for changes - decided to not mention windows separately, since UNIX command works just fine in Command Prompt with Ruby
Diffstat (limited to 'README.md')
-rwxr-xr-xREADME.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index aaa819d6..af2ab258 100755
--- a/README.md
+++ b/README.md
@@ -33,6 +33,5 @@ process easy and effective for everyone involved.
### Notes
* Please don't commit straight into the master or live branches, these branches should remain as stable as possible, and changes should be discussed amongst the community.
-* After changing any SCSS file, it should be recompiled to CSS before merging. Following options are recommended:
- * Unix: `sass file.scss:file.css --sourcemap`
- * Windows: `node-sass file.scss file.css --source-map true`
+* If you are chaning SCSS files during development, following command for automatic compilation is recommended:
+ * `sass --watch [location to scss files]`