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
| var gulp = require('gulp'); | |
| gulp.task('nome da tarefa', function(){ | |
| //aqui serão inseridos os comandos; | |
| }); |
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
| var gulp = require('gulp'); | |
| uglify = require('gulp-uglify'); | |
| gulp.task('default', function() { | |
| // corpo da tarefa | |
| gulp.src('js/*.js') | |
| .pipe(uglify()) | |
| .pipe(gulp.dest('minjs')) | |
| }); |
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
| gulp.task('watch', function(){ | |
| gulp.watch('js/*.js', ['scripts']) | |
| }); |
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
| body { | |
| font: 100% Helvetica, sans-serif; | |
| color: #333; | |
| } |
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
| nav | |
| ul | |
| margin: 0 | |
| padding: 0 | |
| list-style: none | |
| li | |
| display: inline-block | |
| a |
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
| nav ul { | |
| margin: 0; | |
| padding: 0; | |
| list-style: none; | |
| } | |
| nav li { | |
| display: inline-block; | |
| } |
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
| // _reset.sass | |
| html, | |
| body, | |
| ul, | |
| ol | |
| margin: 0 | |
| padding: 0 |
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
| //base.sass | |
| @import reset | |
| body | |
| font: 100% Helvetica, sans-serif | |
| background-color: #efefef |
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
| $fonte: Helvetica, sans-serif | |
| $cor-primaria: #333 | |
| body | |
| font: 100% $fonte | |
| color: $cor-primaria |
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
| html, body, ul, ol { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| font: 100% Helvetica, sans-serif; | |
| background-color: #efefef; | |
| } |
OlderNewer