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

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/README.md')
-rw-r--r--examples/README.md48
1 files changed, 44 insertions, 4 deletions
diff --git a/examples/README.md b/examples/README.md
index a9bd048..72eae3e 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -1,11 +1,24 @@
# Examples
-Setup
+Setup
```shell
npm install
# OR
yarn
```
+## Less
+### node
+```shell
+cd examples/less/node
+node ./index.js
+```
+### Gulp
+```shell
+cd examples/less/gulp
+gulp build
+```
+
+
## PostCSS
### node
```shell
@@ -19,14 +32,41 @@ gulp build
```
+## Sass
+### node
+```shell
+cd examples/sass/node
+node ./index.js
+```
+### Gulp
+```shell
+cd examples/sass/gulp
+gulp build
+```
+
+
## SCSS
-### Sass
+### node
```shell
-cd examples/scss/sass
-sass TODO
+cd examples/scss/node
+node ./index.js
```
### Gulp
```shell
cd examples/scss/gulp
gulp build
```
+
+
+## Stylus
+### node
+```shell
+cd examples/stylus/node
+node ./index.js
+```
+### Gulp
+```shell
+cd examples/stylus/gulp
+gulp build
+```
+