forked from chingyawhao/materialize-clockpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntFile.js
More file actions
176 lines (174 loc) · 5.2 KB
/
GruntFile.js
File metadata and controls
176 lines (174 loc) · 5.2 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
module.exports = function(grunt) {
var aSrcFiles = [
'src/js/**/*.js'
];
var aSpecFiles = [
'tests/specs/**/*Spec.js'
];
var aSassFiles = [
'src/sass/clockpicker.scss',
'src/sass/components/**/*.scss',
];
grunt.initConfig({
// Sass
sass: { // Task
expanded: { // Target
options: { // Target options
outputStyle: 'expanded',
sourcemap: false
},
files: {
'dist/css/materialize.clockpicker.css': 'src/css/clockpicker.scss',
}
},
min: {
options: {
outputStyle: 'compressed',
sourcemap: false
},
files: {
'dist/css/materialize.clockpicker.min.css': 'src/css/clockpicker.scss',
}
}
},
// Copy
copy: {
fixture: {
src: 'index.html', dest: './tests/fixtures/fixture.html'
},
dist: {
src: 'src/js/materialize.clockpicker.js', dest: 'dist/js/materialize.clockpicker.js'
}
},
replace: {
fixture: {
src: './tests/fixtures/fixture.html',
overwrite: true,
replacements: [
{
from: /<!DOCTYPE html>[\s\S]*<\/head>/gi,
to: ''
},
{
from: /<script[\s\S]*script>/gi,
to: ''
},
{
from: '</html>',
to: ''
},
{
from: /^(?=\n)$|^\s*|\s*$|\n\n+/gm,
to: ''
}
]
}
},
// Concat
// concat: {
// options: {
// separator: ';'
// },
// dist: {
// // the files to concatenate
// src: aSrcFiles,
// // the location of the resulting JS file
// dest: 'dist/js/materialize.clockpicker.js'
// }
// },
// Uglify
uglify: {
options: {
// Use these options when debugging
// mangle: false,
// compress: false,
// beautify: true
},
dist: {
files: {
'dist/js/materialize.clockpicker.min.js': ['dist/js/materialize.clockpicker.js']
}
}
},
// Jasmine
jasmine: {
components: {
src: aSrcFiles,
options: {
vendor: [
'node_modules/jquery/dist/jquery.js',
'node_modules/jasmine-jquery/lib/jasmine-jquery.js',
'node_modules/materialize-css/dist/js/materialize.min.js'
],
styles: [
'node_modules/materialize-css/dist/css/materialize.min.css',
'dist/css/materialize.clockpicker.css'
],
specs: aSpecFiles,
keepRunner : true
//helpers: 'test/spec/*.js'
}
}
},
// Watch Files
watch: {
js: {
files: ["src/js/**/*.js"],
tasks: ['dev'],
options: {
interrupt: false,
spawn: false
}
},
sass: {
files: aSassFiles,
tasks: ['sass'],
options: {
interrupt: false,
spawn: false
}
},
tests: {
files: aSpecFiles,
tasks: ['tests'],
options: {
interrupt: false,
spawn: false
}
}
},
// Concurrent
concurrent: {
options: {
logConcurrentOutput: true,
limit: 10
},
monitor: {
tasks: ["watch:sass", "watch:js", "watch:tests"]
}
}
});
// load the tasks
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-contrib-jasmine');
// define the tasks
grunt.registerTask('monitor', ["concurrent:monitor"]);
grunt.registerTask('release', [
"copy:dist",
"uglify:dist"
]);
grunt.registerTask('dev', [
// "concat:js",
"tests"
]);
grunt.registerTask('tests', [
"copy:fixture",
"replace:fixture",
"jasmine"
]);
};