This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
gulp.task('sass', function () { | |
return gulp.src('./public/sass/index.scss') | |
.pipe(sass().on('error', sass.logError)) | |
.pipe(gulp.dest('./public/css')); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "tvify", | |
"description": "Una web app para seleccionar tus shows favoritos", | |
"version": "0.1.0", | |
"dependencies": { | |
"jquery": "^2.1.4", | |
"page": "^1.6.4", | |
"qs": "^6.0.0", | |
"serve": "^1.4.0" | |
}, |
NewerOlder