-
Notifications
You must be signed in to change notification settings - Fork 329
/
Gruntfile.js
109 lines (94 loc) · 3.34 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
var fs = require('fs');
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
browserify : {
core : {
src : ["src/p2.js"],
dest : 'build/p2.js',
options:{
bundleOptions : {
standalone : "p2"
}
}
}
},
uglify : {
build: {
src : ['build/p2.js'],
dest : 'build/p2.min.js'
},
demo: {
src : ['build/p2.renderer.js'],
dest : 'build/p2.renderer.min.js'
}
},
nodeunit: {
all: ['test/**/*.js'],
},
jshint: {
all: ['src/**/*.js'],
options:{
jshintrc: '.jshintrc',
force: true // Do not fail the task
}
},
watch: {
options: {
nospawn: false
},
files: [
'src/**/*',
'demos/js/*Renderer.js',
'test/**/*'
],
tasks: [
'dev'
]
},
concat: {
renderer: {
src: ['demos/js/pixi.js', 'demos/js/dat.gui.js', 'demos/js/Renderer.js', 'demos/js/WebGLRenderer.js'],
dest: 'build/p2.renderer.js',
}
},
yuidoc: {
compile: {
name: 'p2.js',
description: '<%= pkg.description %>',
version: '<%= pkg.version %>',
url: '<%= pkg.homepage %>',
options: {
outdir : "docs",
paths : ["./src/"],
exclude: ".DS_Store,.svn,CVS,.git,build_rollup_tmp,build_tmp,gl-matrix"
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-yuidoc');
grunt.registerTask('default', ['test','jshint','browserify','concat','uglify','addLicense','requireJsFix']);
grunt.registerTask('dev', ['test','jshint','browserify','concat']);
grunt.registerTask('test', ['nodeunit']);
// Not sure what flag Browserify needs to do this. Fixing it manually for now.
grunt.registerTask('requireJsFix','Modifies the browserify bundle so it works with RequireJS',function(){
['build/p2.js', 'build/p2.min.js'].forEach(function (path){
var text = fs.readFileSync(path).toString();
text = text.replace('define.amd', 'false'); // This makes the bundle skip using define() from RequireJS
fs.writeFileSync(path, text);
});
});
grunt.registerTask('addLicense','Adds the LICENSE to the top of the built files',function(){
var text = fs.readFileSync("LICENSE").toString();
var dev = fs.readFileSync("build/p2.js").toString();
var min = fs.readFileSync("build/p2.min.js").toString();
fs.writeFileSync("build/p2.js",text+"\n"+dev);
fs.writeFileSync("build/p2.min.js",text+"\n"+min);
});
};