|
| 1 | +"use strict" |
| 2 | + |
| 3 | +// -- DEPENDENCIES ------------------------------------------------------------- |
| 4 | +var gulp = require('gulp'); |
| 5 | +var coffee = require('gulp-coffee'); |
| 6 | +var concat = require('gulp-concat'); |
| 7 | +var connect = require('gulp-connect'); |
| 8 | +var header = require('gulp-header'); |
| 9 | +var uglify = require('gulp-uglify'); |
| 10 | +var gutil = require('gulp-util'); |
| 11 | +var stylus = require('gulp-stylus'); |
| 12 | +var yml = require('gulp-yml'); |
| 13 | +var pkg = require('./package.json'); |
| 14 | + |
| 15 | +// -- FILES -------------------------------------------------------------------- |
| 16 | +var path = { |
| 17 | + build : './site/package', |
| 18 | + js : ['atoms.build/atoms.js', 'atoms.build/extension.*.js'], |
| 19 | + css : ['atoms.build/atoms.css','atoms.build/extension.*.css']}; |
| 20 | + |
| 21 | +var source = { |
| 22 | + coffee: [ 'sources/tuktuk.coffee', |
| 23 | + 'sources/tuktuk.*.coffee'], |
| 24 | + styl : [ 'sources/stylesheets/__constants.styl', |
| 25 | + 'sources/stylesheets/tuktuk.*.styl'], |
| 26 | + theme : [ 'sources/themes/default/__constants.styl', |
| 27 | + 'sources/themes/default/tuktuk.default.styl', |
| 28 | + 'sources/themes/default/tuktuk.default.*.styl'], |
| 29 | + icons :[ 'sources/componentes/lungo.icon/lungo.icon.css']}; |
| 30 | + |
| 31 | +var banner = ['/**', |
| 32 | + ' * <%= pkg.name %> - <%= pkg.description %>', |
| 33 | + ' * @version v<%= pkg.version %>', |
| 34 | + ' * @link <%= pkg.homepage %>', |
| 35 | + ' * @author <%= pkg.author.name %> (<%= pkg.author.site %>)', |
| 36 | + ' * @license <%= pkg.license %>', |
| 37 | + ' */', |
| 38 | + ''].join('\n'); |
| 39 | + |
| 40 | +// -- TASKS -------------------------------------------------------------------- |
| 41 | +gulp.task('coffee', function() { |
| 42 | + gulp.src(source.coffee) |
| 43 | + .pipe(concat('tuktuk.coffee')) |
| 44 | + .pipe(coffee().on('error', gutil.log)) |
| 45 | + .pipe(uglify({mangle: false})) |
| 46 | + .pipe(header(banner, {pkg: pkg})) |
| 47 | + .pipe(gulp.dest(path.build)) |
| 48 | + .pipe(connect.reload()); |
| 49 | +}); |
| 50 | + |
| 51 | +gulp.task('styl', function() { |
| 52 | + gulp.src(source.styl) |
| 53 | + .pipe(concat('tuktuk.styl')) |
| 54 | + .pipe(stylus({compress: true, errors: true})) |
| 55 | + .pipe(header(banner, {pkg: pkg})) |
| 56 | + .pipe(gulp.dest(path.build)) |
| 57 | + .pipe(connect.reload()); |
| 58 | +}); |
| 59 | + |
| 60 | +gulp.task('theme', function() { |
| 61 | + gulp.src(source.styl) |
| 62 | + .pipe(concat('tuktuk.theme.default.styl')) |
| 63 | + .pipe(stylus({compress: true, errors: true})) |
| 64 | + .pipe(header(banner, {pkg: pkg})) |
| 65 | + .pipe(gulp.dest(path.build)) |
| 66 | + .pipe(connect.reload()); |
| 67 | +}); |
| 68 | + |
| 69 | +gulp.task('webserver', function() { |
| 70 | + connect.server({ port: 8000, root: 'www/', livereload: true }); |
| 71 | +}); |
| 72 | + |
| 73 | +gulp.task('init', function() { |
| 74 | + gulp.run(['coffee', 'styl', 'theme']) |
| 75 | +}); |
| 76 | + |
| 77 | +gulp.task('default', function() { |
| 78 | + gulp.run(['webserver']) |
| 79 | + gulp.watch(source.coffee, ['coffee']); |
| 80 | + gulp.watch(source.styl, ['styl']); |
| 81 | + gulp.watch(source.theme, ['theme']); |
| 82 | +}); |
0 commit comments