-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
125 lines (104 loc) · 4.01 KB
/
Gruntfile.js
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
module.exports = function(grunt) {
grunt.initConfig({
bowerful: {
dist: {
/**
store (optional) -> path where components are installed. defaults
to 'components'
*/
store: 'components',
/**
dest (optional) -> directory where files will be merged. Merged
files take the form:
assets[.extension] = { merged files of extension type }
e.g. all JS from bower packages will end up in assets.js; all css in assets.css
Files are merged according to dependency rules, such that a file is
concatenated after files upon which it depends.
*/
dest: 'public',
/**
destfile (optional) -> filename that will be used when files are merged. Merged
files will default to 'assets'
*/
destfile: 'assets',
/**
customtarget (optional) -> file targets can be manually specified.
string - fullpath string without any extenstion, this will be added automaticly.
key/value pairs. - fullpath string with extensions, extensions can be overwritten.
eg: Changing ext to something else, example '.less' or '.scss'
*/
/**
@packages (required) -> object of `package name: package version`
key/value pairs. Version can be left blank.
*/
packages: {
bootstrap: '~2.2.1',
jquery: '',
ember: '',
sugar: '',
handlebars: {
exclude: [ 'handlebars.runtime.js' ],
},
markdown: {
exclude: [ './lib/index.js' ]
}
}
}
},
ember_templates: {
compile: {
options: {
templateName: function(sourceFile) {
return require('path').basename(sourceFile);
},
},
files: {
'public/application.js': [ 'client/lib/templates/**.handlebars' ]
}
}
},
copy: {
main: {
files: [
{ src: [ '**' ], dest:
'public/', cwd: 'client/static/', expand: true, filter: 'isFile' }, // includes files in path
]
},
images: {
files: [
{ src: [ '**' ], dest: 'public/img/', cwd: 'components/bootstrap/img/',
expand: true, filter: 'isFile' }, // includes files in path
]
}
},
concat: {
dist: {
src: [
'public/application.js',
'client/3rd/**/*.js',
'client/lib/application.js',
'client/lib/router.js',
'client/lib/store.js',
'client/lib/helpers/*.js',
'client/lib/mixins/*.js',
'client/lib/models/*.js',
'client/lib/views/*.js',
'client/lib/controllers/*.js',
],
dest: 'public/application.js'
},
},
watch: {
scripts: {
files: [ 'client/**' ],
tasks: [ 'default' ]
}
}
});
grunt.loadNpmTasks('grunt-bowerful');
grunt.loadNpmTasks('grunt-ember-templates');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', [ 'bowerful', 'ember_templates', 'copy', 'concat' ]);
};