summaryrefslogtreecommitdiffstats
path: root/coffee/grunt.coffee
blob: a01f34e84f48de9103481d8b53cdcfbd1f807965 (plain)
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
module.exports = (grunt) ->
	
	grunt.loadNpmTasks('grunt-contrib-coffee')

	grunt.initConfig
	
		meta:
			pkg: grunt.file.readJSON('package.json')
			version: '<%= meta.pkg.version %>'
			banner: '/**\n' +
				' * <%= meta.pkg.description %> - v<%= meta.version %>\n' +
				' *\n' +
				'<% _.forEach(meta.pkg.contributors, function(contributor){	%>' +
				' * Copyright (c) <%= grunt.template.today("yyyy") %> - ' +
				'<%= contributor.name %> <<%= contributor.email %>>\n' +
				'<% }) %>' +
				' *\n' +
				' * This file is licensed under the Affero General Public License version 3 or later.\n' +
				' * See the COPYING-README file\n' +
				' *\n' + 
				' */'
			prefix: '(function(angular, $, OC, oc_requesttoken){'
			suffix: '})(window.angular, jQuery, OC, oc_requesttoken);'
			build: 'build/'
			production: '../js/'

		concat:
			app: 
				src: [	
						'<banner:meta.banner>'
						'<banner:meta.prefix>'
						'<%= meta.build %>main.js'
						'<banner:meta.suffix>'
					]
				dest: '<%= meta.production %>app.js'
			owncloud: 
				src: ['lib/owncloud.coffee', 'lib/services/*.coffee']
				dest: '<%= meta.build %>owncloud.coffee'
			news: 
				src: [
						'app.coffee'
						'services/*.coffee'
						'controllers/*.coffee'
						'directives/*.coffee'
						'filters/*.coffee'
					]
				dest: '<%= meta.build %>news.coffee'
			
		coffee: 
			compile:
				files:
					'<%= meta.build %>main.js': [
						'<%= meta.build %>owncloud.coffee'
						'<%= meta.build %>news.coffee'
					]

		watch: 
			app: 
				files: './**/*.coffee',
				tasks: 'compile'


	grunt.registerTask('run', 'watch')
	grunt.registerTask('compile', 'concat:owncloud concat:news coffee concat:app')