]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/Gruntfile.js
910d7e146f676235fe9ab2986cb1e576be8875f9
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / Gruntfile.js
1 module.exports = function(grunt) {
2
3   // Project configuration.
4   var config = { 
5     pkg: grunt.file.readJSON('package.json'),
6
7     // copy the files we care about from bower-fetched dependencies
8     // into our build directory
9     copy: {
10
11       js : {
12         files: [{ 
13           dest: 'build/js/', 
14           flatten: true,
15           filter: 'isFile',
16           expand : true,
17           src: [
18             'bower_components/angular/angular.min.js',
19             'bower_components/angular/angular.min.js.map',
20             'bower_components/angular-animate/angular-animate.min.js',
21             'bower_components/angular-animate/angular-animate.min.js.map',
22             'bower_components/angular-sanitize/angular-sanitize.min.js',
23             'bower_components/angular-sanitize/angular-sanitize.min.js.map',
24             'bower_components/angular-route/angular-route.min.js',
25             'bower_components/angular-route/angular-route.min.js.map',
26             'bower_components/angular-bootstrap/ui-bootstrap.min.js',
27             'bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js',
28             'bower_components/angular-hotkeys/build/hotkeys.min.js',
29             'bower_components/angular-file-saver/dist/angular-file-saver.bundle.min.js',
30             'bower_components/angular-location-update/angular-location-update.min.js',
31             'bower_components/angular-tree-control/angular-tree-control.js',
32             'bower_components/ngtoast/dist/ngToast.min.js',
33             'bower_components/jquery/dist/jquery.min.js',
34           ]
35         }]
36       },
37
38       css : {
39         files : [{
40           dest : 'build/css/',
41           flatten : true,
42           filter : 'isFile',
43           expand : true,
44           src : [
45             'bower_components/angular-hotkeys/build/hotkeys.min.css',
46             'bower_components/bootstrap/dist/css/bootstrap.min.css', 
47             'bower_components/ngtoast/dist/ngToast.min.css',
48             'bower_components/ngtoast/dist/ngToast-animations.min.css',
49             'bower_components/angular-tree-control/css/tree-control.css',
50             'bower_components/angular-tree-control/css/tree-control-attribute.css',
51           ]
52         }]
53       },
54
55       fonts : {
56         files : [{
57           dest : 'build/fonts/',
58           flatten : true,
59           filter : 'isFile',
60           expand : true,
61           src : [
62             'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot',
63             'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg',
64             'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf',
65             'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff'
66           ]
67         }]
68       },
69
70       images : {
71         files : [{
72           dest : 'build/images/',
73           flatten : true,
74           filter : 'isFile',
75           expand : true,
76           src : [
77             'bower_components/angular-tree-control/images/sample.png',
78             'bower_components/angular-tree-control/images/node-opened-2.png',
79             'bower_components/angular-tree-control/images/folder.png',
80             'bower_components/angular-tree-control/images/node-closed.png',
81             'bower_components/angular-tree-control/images/node-closed-light.png',
82             'bower_components/angular-tree-control/images/node-opened.png',
83             'bower_components/angular-tree-control/images/node-opened-light.png',
84             'bower_components/angular-tree-control/images/folder-closed.png',
85             'bower_components/angular-tree-control/images/node-closed-2.png',
86             'bower_components/angular-tree-control/images/file.png'
87           ]
88         }]
89       }
90     },
91
92     // combine our CSS deps
93     // note: minification also supported, but not required (yet).
94     cssmin: {
95       combine: {
96         files: {
97           'build/css/evergreen-staff-client-deps.<%= pkg.version %>.min.css' : [
98             'build/css/hotkeys.min.css',
99             'build/css/bootstrap.min.css',
100             'build/css/ngToast.min.css',
101             'build/css/ngToast-animations.min.css',
102             'build/css/tree-control.css',
103             'build/css/tree-control-attribute.css',
104           ]
105         }
106       }
107     },
108
109     // concatenation + minification
110     uglify: {
111       options: {
112         banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
113       },
114       build: {
115         src: [
116             // These are concatenated in order in the final build file.
117             // The order is important.
118             'build/js/jquery.min.js',
119             'build/js/angular.min.js',
120             'build/js/angular-animate.min.js',
121             'build/js/angular-sanitize.min.js',
122             'build/js/angular-route.min.js',
123             'build/js/ui-bootstrap.min.js',
124             'build/js/ui-bootstrap-tpls.min.js',
125             'build/js/hotkeys.min.js',
126             'build/js/angular-tree-control.js',
127             'build/js/ngToast.min.js',
128             // NOTE: OpenSRF must be installed
129             '/openils/lib/javascript/JSON_v1.js',
130             '/openils/lib/javascript/opensrf.js',
131             '/openils/lib/javascript/opensrf_ws.js',
132             'services/core.js',
133             'services/strings.js',
134             'services/idl.js',
135             'services/event.js',
136             'services/net.js',
137             'services/auth.js',
138             'services/pcrud.js',
139             'services/env.js',
140             'services/org.js',
141             'services/startup.js',
142             'services/hatch.js',
143             'services/print.js',
144             'services/audio.js',
145             'services/coresvc.js',
146             'services/navbar.js',
147             'services/statusbar.js',
148             'services/ui.js',
149             'services/date.js',
150         ],
151         dest: 'build/js/<%= pkg.name %>.<%= pkg.version %>.min.js'
152       }
153     },
154
155     // bare concat operation; useful for testing concat w/o minification
156     // to more easily detect if concat order is incorrect
157     concat: {
158       options: {
159        separator: ';',
160       }
161     },
162
163     exec : {
164
165       // Generate test/data/IDL2js.js for unit tests.
166       // note: the output of this script is *not* part of the final build.
167       idl2js : {
168         command : 'cd test/data && perl idl2js.pl',
169       },
170
171       // Remove the unit test IDL2js.js file.  We don't need it after testing
172       rmidl2js : {
173         command : 'rm test/data/IDL2js.js',
174       }
175     },
176
177     // unit tests configuration
178     karma : {
179       unit: {
180         configFile: 'test/karma.conf.js',
181         //background: true  // for now, visually babysit unit tests
182       }
183     }
184   };
185
186   // tell concat about our uglify build options (instead of repeating them)
187   config.concat.build = config.uglify.build;
188
189   // apply our configuration
190   grunt.initConfig(config);
191
192   // Load our modules
193   grunt.loadNpmTasks('grunt-contrib-uglify');
194   grunt.loadNpmTasks('grunt-contrib-concat');
195   grunt.loadNpmTasks('grunt-contrib-copy');
196   grunt.loadNpmTasks('grunt-contrib-cssmin');
197   grunt.loadNpmTasks('grunt-karma');
198   grunt.loadNpmTasks('grunt-exec');
199
200   // note: "grunt concat" is not requried 
201   grunt.registerTask('build', ['copy', 'cssmin', 'uglify']);
202
203   // test only, no minification
204   grunt.registerTask('test', ['copy', 'exec:idl2js', 'karma:unit', 'exec:rmidl2js']);
205
206   // note: "grunt concat" is not requried 
207   grunt.registerTask('all', ['test', 'cssmin', 'uglify']);
208
209 };
210
211 // vim: ts=2:sw=2:softtabstop=2