forked from dobtco/formbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
61 lines (47 loc) · 1.52 KB
/
Gruntfile.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
ALL_TASKS = ['jst:all', 'coffee:all', 'concat:all', 'stylus:all']
module.exports = (grunt) ->
path = require('path')
exec = require('child_process').exec
grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.loadNpmTasks('grunt-contrib-concat')
grunt.loadNpmTasks('grunt-contrib-cssmin')
grunt.loadNpmTasks('grunt-contrib-jst')
grunt.loadNpmTasks('grunt-contrib-stylus')
grunt.loadNpmTasks('grunt-contrib-uglify')
grunt.loadNpmTasks('grunt-contrib-watch')
grunt.initConfig
pkg: '<json:package.json>'
jst:
all:
options:
namespace: 'Formbuilder.templates'
processName: (filename) ->
filename.replace('./templates/', '').replace('.html', '')
files:
'templates/compiled.js': ['./templates/**/*.html']
coffee:
all:
files:
'js/compiled.js': ['coffee/rivets-config.coffee', 'coffee/main.coffee', 'coffee/fields/*.coffee']
concat:
all:
src: ['js/compiled.js', 'templates/compiled.js']
dest: 'formbuilder.js'
cssmin:
dist:
files:
'formbuilder-min.css': ['formbuilder.css']
stylus:
all:
files:
'formbuilder.css': 'styl/formbuilder.styl'
uglify:
dist:
files:
'formbuilder-min.js': 'formbuilder.js'
watch:
all:
files: ['./coffee/**/*.coffee', 'templates/**/*.html', './styl/**/*.styl']
tasks: ALL_TASKS
grunt.registerTask 'default', ALL_TASKS
grunt.registerTask 'dist', ['cssmin:dist', 'uglify:dist']