Skip to content

Commit 57080fe

Browse files
author
@soyjavi
committedJul 28, 2014
Use GULP instead of GRUNT
1 parent b046d09 commit 57080fe

File tree

2 files changed

+100
-19
lines changed

2 files changed

+100
-19
lines changed
 

‎gulpfile.js

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
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+
});

‎package.json

+18-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
{
2-
"name": "Tuktuk",
3-
"description": "Simple (but powerful) RWD Framework",
4-
"version": "0.9.0",
5-
"homepage": "http://tuktuk.tapquo.com",
6-
"author": {
7-
"name": "Javi Jimenez",
8-
"site": "https://twitter.com/soyjavi"},
9-
"license": [ {"type": "MIT"} ],
10-
"devDependencies": {
11-
"grunt": "*",
12-
"grunt-contrib-coffee": "*",
13-
"grunt-contrib-stylus": "*",
14-
"grunt-contrib-uglify": "*",
15-
"grunt-contrib-concat": "*",
16-
"grunt-contrib-copy": "*",
17-
"grunt-contrib-watch": "*"
18-
},
19-
"scripts": {},
20-
"engines": {}
2+
"name" : "Tuktuk",
3+
"version" : "1.0.0",
4+
"description" : "Simple (but powerful) RWD Framework",
5+
"author" : "Javi Jimenez <https://twitter.com/soyjavi>",
6+
"homepage" : "http://tuktuk.tapquo.com",
7+
"license" : "MIT",
8+
"devDependencies" : {
9+
"gulp" : "*",
10+
"gulp-coffee" : "*",
11+
"gulp-concat" : "*",
12+
"gulp-connect": "*",
13+
"gulp-header" : "*",
14+
"gulp-jasmine": "*",
15+
"gulp-stylus" : "*",
16+
"gulp-uglify" : "*",
17+
"gulp-util" : "*",
18+
"gulp-yml" : "*"
19+
}
2120
}

0 commit comments

Comments
 (0)
Please sign in to comment.