This repository has been archived by the owner on Nov 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathGruntfile.js
83 lines (72 loc) · 2.47 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
module.exports = function(grunt) {
var before = ['pre.js'];
var after = ['after.js'];
var libFiles = ['ui/UIElement.js',
'ui/UI.js',
'ui/Area.js',
'ui/Curve.js',
'ui/Bar.js',
'ui/Button.js',
'ui/Background.js',
'ui/ClickBar.js',
'ui/Gauge.js',
'ui/Grid.js',
'ui/Knob.js',
'ui/Label.js',
'ui/RotKnob.js',
'ui/Slider.js',
'ui/Wavebox.js',
'ui/extras/CurveEditor.js',
'ui/extras/AreaEditor.js',
'ui/extras/BarSelect.js',
'ui/engines/EngineFactory.js',
'ui/engines/CanvasUtils.js',
'comm/osc.js',
'comm/OSCHandler.js',
'utilities/Utilities.js',
];
/*var libFiles = ['ui/*.js','ui/extras/*.js', 'ui/engines/*.js', 'comm/*.js', 'utilities/*.js'];*/
var allFiles = before.concat(libFiles, after);
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-strip');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
dist: {
src: allFiles,
dest: 'dist/<%= pkg.name %>.js'
}
},
jshint: {
beforeconcat: libFiles,
afterconcat: ['<%= concat.dist.dest %>'],
options: {
browser: true,
smarttabs: true
}
},
uglify: {
options: {
// the banner is inserted at the top of the output
banner: '/*! <%= pkg.name %> v<%= pkg.version %> built on <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
dist: {
files: {
'dist/<%= pkg.name %>.min.js': ['<%= concat.dist.dest %>']
}
}
},
strip : {
main : {
src : '<%= concat.dist.dest %>',
dest : '<%= concat.dist.dest %>',
}
}
});
// Default task.
grunt.registerTask('default', ['concat', 'jshint', 'uglify']);
grunt.registerTask('release', ['concat', 'jshint', 'strip', 'uglify']);
};