This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
121 lines (118 loc) · 3.15 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
module.exports = function(grunt) {
grunt.initConfig({
globalConfig: grunt.file.readJSON('gruntconfig.json'),
pkg: grunt.file.readJSON('package.json'),
coffee: {
compile: {
options: {
bare: true,
sourceMap: true
},
files: {
'app.js': '<%= globalConfig.app_js %>',
'lib.js': '<%= globalConfig.lib_js %>'
}
}
},
sass: {
dist: {
files: [
{ // compile to project css folder
expand: true,
cwd: '<%= globalConfig.project_path %>/<%= globalConfig.scss_folder %>',
src: '<%= globalConfig.watch_scss %>',
dest: '<%= globalConfig.project_path %>/<%= globalConfig.css_folder %>',
ext: '.css'
},
{ // compile and copy over to sitecore folder
expand: true,
cwd: '<%= globalConfig.project_path%>/<%= globalConfig.scss_folder %>',
src: '<%= globalConfig.watch_scss%>',
dest: '<%= globalConfig.sitecore_path%>/<%= globalConfig.css_folder %>',
ext: '.css'
}
],
options: {
quiet: true
}
}
},
cssmetrics: {
dev: {
src: ['<%= globalConfig.project_path%>/<%= globalConfig.css_folder %>/*.css']
}
},
sync: {
main: {
files: [
{
expand: true,
cwd: '<%= globalConfig.project_path%>/',
src: ['**/*.ascx', '**/*.aspx'],
dest: '<%= globalConfig.sitecore_path%>/'
}
]
}
},
docco: {
debug: {
src: ['<%= globalConfig.jsdocs_folder %>/*.coffee'],
options: {
output: '<%= globalConfig.jsdocs_folder_output %>/'
}
}
},
watch: {
coffee: {
files: '<%= globalConfig.watch_coffee%>',
tasks: ['default']
},
sass: {
files: '<%= globalConfig.project_path%>/<%= globalConfig.scss_folder %>/**/*.scss',
tasks: ['sass:dist'],
options: {
livereload: true
}
},
sync: {
files: [
'<%= globalConfig.project_path%>/**/*.ascx',
'<%= globalConfig.project_path%>/**/*.aspx'
],
tasks: ['sync:main'],
options: {
livereload: true
}
}
},
grunticon: {
all: {
files: [
{
expand: true,
cwd: '<%= globalConfig.project_path%>/<%= globalConfig.img_folder %>',
src: ['*.svg'],
dest: '<%= globalConfig.project_path%>/<%= globalConfig.img_folder %>'
}
],
options: {
pngfolder: "_ie"
}
}
},
cssmin: {
minify: {
expand: true,
cwd: '<%= globalConfig.project_path%>/<%= globalConfig.css_folder %>/',
src: ['*.css'],
dest: '<%= globalConfig.project_path%>/<%= globalConfig.css_folder %>/',
ext: '.min.css'
}
}
});
// Load plugins
require('time-grunt')(grunt);
require('load-grunt-tasks')(grunt);
// Default task(s)
grunt.registerTask('default', ['newer:coffee', 'newer:sass', 'newer:copy', 'newer:docco']);
};