-
Notifications
You must be signed in to change notification settings - Fork 406
/
Gruntfile.coffee
44 lines (35 loc) · 1.3 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
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON("package.json")
clean: ["build/js", "build/css"]
concat:
options:
banner: "/*! <%= pkg.name %> <%= pkg.version %> */\n"
dist:
src: ["src/js/preboot.js", "lib/shims.js", "build/js/<%= pkg.name %>.js"]
dest: "build/js/<%= pkg.name %>.js"
uglify:
options:
banner: "/*! <%= pkg.name %> <%= pkg.version %> */\n"
build:
src: "build/js/<%= pkg.name %>.js"
dest: "build/js/<%= pkg.name %>.min.js"
coffee:
options:
separator: "/*! <%= pkg.name %> <%= pkg.version %> */\n"
compile:
files:
"build/js/messenger.js": "src/coffee/messenger.coffee"
"build/js/messenger-theme-future.js": "src/coffee/messenger-theme-future.coffee"
"build/js/messenger-theme-flat.js": "src/coffee/messenger-theme-flat.coffee"
compass:
dist:
options:
sassDir: "src/sass"
cssDir: "build/css"
grunt.loadNpmTasks "grunt-contrib-uglify"
grunt.loadNpmTasks "grunt-contrib-compass"
grunt.loadNpmTasks "grunt-contrib-coffee"
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-contrib-concat"
grunt.registerTask "default", ["clean", "coffee", "compass", "concat", "uglify"]