-
Notifications
You must be signed in to change notification settings - Fork 83
/
Gruntfile.js
143 lines (134 loc) · 3.73 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
var buildVersion = require("./package.json").version,
year = new Date().getFullYear(),
config = {
scripts: "src/js/**/*.js",
scriptsDir: "src/js",
modulesDir: "src/js/modules",
extensions: "src/js/extensions/**/*.js",
extensionsDir: "src/js/extensions",
devTests: "tests/unit/**/*test*.htm*",
devTestsDir: "tests/unit",
currentBuildNumberPrefix: "16.2.20162.",
currentBuildNumberPrefixCI: "2016.2"
};
module.exports = function (grunt) {
grunt.initConfig({
config: config,
pkg: grunt.file.readJSON("package.json"),
jshint: {
all: grunt.file.readJSON('build/config/all/jshint.json').config,
options: {
jshintrc: true,
ignores: grunt.file.readJSON('build/config/all/jshintIgnore.json').config
}
},
clean: {
jshint: ["jshint"],
build: ["dist/**/*", "!dist/.git/**/*"]
},
copy: {
js: {
expand: true,
cwd: './src/',
src: 'js/**/*.js',
dest: './dist/',
options: {
process: function (content, srcpath) {
if (srcpath.indexOf("infragistics.loader.js") >= 0){
// Set loader default locale:
content = content.replace(/_defaultLocale:\s*""/, "_defaultLocale: \"en\"");
}
return content.replace(/<build_number>/g, buildVersion).replace("<year>", year);
}
},
},
css: {
expand: true,
cwd: './src/',
src: 'css/**',
dest: './dist/',
},
resources: {
files: [{
src: ['bower.json', "LICENSE"],
dest: './dist/'
}, {
expand: true,
cwd: './build/packages/',
src: ["package.json", "README.md"],
dest: './dist/'
}],
options: {
process: function (content, srcpath) {
if (srcpath.indexOf("bower.json") >= 0) {
var config = JSON.parse(content);
config.version = buildVersion;
content = JSON.stringify(config, null, ' ') + '\n';
}
return content;
}
}
}
},
cssmin: {
all: {
files: [{
expand: true,
cwd: 'dist/css/',
src: ['**/*.css', '!**/*.min.css'],
dest: 'dist/css'
}]
},
structure: {
options: {
rebase: true
},
files: [{
'dist/css/structure/infragistics.css': ['dist/css/structure/modules/*.css']
}]
}
},
uglify: require('./build/packages/combined-files.js').uglify,
concat: require('./build/packages/combined-files.js').concat
});
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.task.registerTask("hint", "A sample task to run JSHINT", function(control) {
var config, reporter, output, report = grunt.option('report');
if (!!control) {
config = grunt.file.readJSON('build/config/' + control + '/jshint.json').config;
} else {
config = grunt.file.readJSON('build/config/all/jshint.json').config;
}
if (report !== undefined) {
reporter = "build/ReporterJSHint.js";
output = "jshint/report.html";
} else {
reporter = undefined;
output = "";
}
grunt.task.run("clean:jshint");
grunt.config("jshint.all", config);
grunt.config("jshint.options.reporter", reporter);
grunt.config("jshint.options.reporterOutput", output);
grunt.task.run("jshint:all");
});
grunt.task.registerTask("verify", "A sample task to run jshint, instrument files, run dev tests and produce coverage report.", function(control) {
if (!!control) {
grunt.task.run("hint:" + control);
} else {
grunt.task.run("hint");
}
});
grunt.task.registerTask("build", "Combine output files and prepare output", function() {
grunt.task.run("clean:build");
grunt.task.run("copy");
grunt.task.run("concat");
grunt.task.run("uglify");
grunt.task.run("cssmin");
});
};