First gulp experience. Gulp + HAML + SCSS
I wanted to test gulp, translate sass to css, haml to html. This is a general repository in which I will compare similar frontend technologies. Rather it does not create a consistent application, sooner a several separate views.
- Gulp - "gulp": "^3.9.1",
- Haml - "gulp-haml": "^1.0.1"
- SCSS - "gulp-sass": "^4.0.1"
- browserSync - "browser-sync": "^2.24.5"
There is no nessecary setup. Gulp tasks usage:
gulp hello
gulp sass
gulp haml
Simple gulp task:
gulp.task('hello', function() {
console.log('Hello Nice Guy');
});
Simple haml code:
#content
.left.column
%h2 Welcome to our site!
%p= print_information
.right.column
= render :partial => "sidebar"
List of features ready and TODOs for future development
- HAML
- SCSS
To-do list:
- add more HAML files
Project is: in progress
I'm going to add some HAML files in the future to train the syntax.
Some unusual inspiration
Created by @lapinskap - feel free to contact me!