-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGruntfile.js
More file actions
128 lines (126 loc) · 2.88 KB
/
Gruntfile.js
File metadata and controls
128 lines (126 loc) · 2.88 KB
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
126
127
128
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
js: {
src: [
'public/app/main/module.js',
'tmp/templates.js',
'public/app/main/**/*.js',
'public/app/accounting/module.js',
'public/app/accounting/**/*.js',
'public/app/collaboration/module.js',
'public/app/collaboration/**/*.js',
'public/app/flow/module.js',
'public/app/flow/**/*.js',
'public/app/identity/module.js',
'public/app/identity/**/*.js',
'public/app/organizations/module.js',
'public/app/organizations/**/*.js',
'public/app/people/module.js',
'public/app/people/**/*.js',
'public/app/kanbanize/module.js',
'public/app/kanbanize/**/*.js'
],
dest: 'build/js/app.js'
},
css: {
src: 'public/app/**/*.css',
dest: 'build/css/style.css'
}
},
uglify: {
options: {
preserveComments: false
},
js: {
files: {
'build/js/app.min.js': ['build/js/app.js']
}
}
},
cssmin: {
options: {
shorthandCompacting: false,
roundingPrecision: -1
},
target: {
files: {
'build/css/style.min.css': ['build/css/style.css']
}
}
},
clean: {
build: [
'build'
],
tmp: [
'tmp'
]
},
jshint: {
app: {
options: {
funcscope:true
},
files:{
src:['public/app/**/*.js']
}
}
},
processhtml: {
dist: {
files: {
'build/index.html': ['public/index.html']
}
}
},
ngtemplates: {
app: {
cwd: 'public',
src: 'app/**/*.html',
dest: 'tmp/templates.js',
options: {
htmlmin: { collapseWhitespace: true, collapseBooleanAttributes: true }
}
}
},
copy: {
main: {
files: [
{src: 'public/icon-set.svg',dest: 'build/icon-set.svg'},
{expand: true, cwd: 'public/img/', src: ['**'], dest: 'build/img/'}
]
},
},
shell: {
testSingle: {
command: 'npm run test-single-run'
}
},
watch: {
scripts: {
tasks: ['jshint','shell:testSingle'],
files: ['public/**/*.js'],
}
},
shell: {
deploy_staging: {
command: 'rsync ./build/* cocoon@10.250.2.44:/var/www/vhosts/cocoon/public --rsh ssh -r --verbose'
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-angular-templates');
grunt.loadNpmTasks('grunt-processhtml');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('build', ['jshint', 'clean:build', 'ngtemplates', 'concat', 'uglify', 'cssmin', 'processhtml', 'copy', 'clean:tmp']);
grunt.registerTask('deploy', ['build', 'shell:deploy_staging']);
};