forked from OpenSOC/opensoc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
29 lines (28 loc) · 739 Bytes
/
Gruntfile.js
File metadata and controls
29 lines (28 loc) · 739 Bytes
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
module.exports = function (grunt) {
grunt.initConfig({
// copies frontend assets from bower_components into project
// bowercopy: {
// options: {
// clean: true
// },
// css: {
// options: {
// destPrefix: 'lib/public/css/vendor'
// },
// files: {
// 'bootstrap.css': 'bootstrap/dist/css/bootstrap.css',
// 'bootstrap-theme.css': 'bootstrap/dist/css/bootstrap-theme.css'
// }
// },
// libs: {
// options: {
// destPrefix: 'lib/public/js/vendor'
// },
// files: {
// 'angular.js': 'angular/angular.js'
// }
// }
// }
});
grunt.loadNpmTasks('grunt-bowercopy');
};