kopia lustrzana https://github.com/robhawkes/vizicities
142 wiersze
3.3 KiB
JavaScript
142 wiersze
3.3 KiB
JavaScript
module.exports = function(grunt) {
|
|
var port = grunt.option('port') || 8000;
|
|
|
|
// Project configuration.
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
uglify: {
|
|
options: {
|
|
banner: '/*! ViziCities <%= grunt.template.today("yyyy-mm-dd") %> */\n'
|
|
},
|
|
build: {
|
|
src: 'build/vizi.js',
|
|
dest: 'build/vizi.min.js'
|
|
}
|
|
},
|
|
concat: {
|
|
options: {},
|
|
dist: {
|
|
// src: ['src/shared/vendor/underscore.js', 'src/shared/vendor/three.js', 'src/client/*'],
|
|
src: [
|
|
'src/shared/vendor/underscore.js',
|
|
'src/shared/vendor/q.js',
|
|
'src/shared/vendor/three/three.js',
|
|
'src/shared/vendor/three/ColorConverter.js',
|
|
'src/shared/vendor/d3.js',
|
|
'src/shared/vendor/catiline.js',
|
|
'src/shared/vendor/dat.gui.js',
|
|
'src/shared/vendor/fpsmeter.js',
|
|
'src/shared/vendor/moment.js',
|
|
'src/client/Vizi.js',
|
|
'src/client/Log.js',
|
|
'src/client/Mediator.js',
|
|
'src/client/debug/Dat.js',
|
|
'src/client/debug/FPS.js',
|
|
'src/client/debug/RendererInfo.js',
|
|
'src/client/ui/Loading.js',
|
|
'src/client/Geo.js',
|
|
'src/client/City.js',
|
|
'src/client/Loop.js',
|
|
'src/client/DOMEvents.js',
|
|
'src/client/webgl/WebGL.js',
|
|
'src/client/webgl/Scene.js',
|
|
'src/client/webgl/Camera.js',
|
|
'src/client/webgl/Renderer.js',
|
|
'src/client/objects/ObjectManager.js',
|
|
'src/client/objects/BuildingManager.js',
|
|
'src/client/objects/Object.js',
|
|
'src/client/objects/Floor.js',
|
|
'src/client/objects/Building.js'
|
|
],
|
|
dest: 'build/vizi.js'
|
|
}
|
|
},
|
|
jshint: {
|
|
options: {
|
|
force: true,
|
|
curly: false,
|
|
eqeqeq: true,
|
|
immed: true,
|
|
latedef: true,
|
|
newcap: true,
|
|
noarg: true,
|
|
sub: true,
|
|
undef: true,
|
|
eqnull: true,
|
|
browser: true,
|
|
expr: true,
|
|
globals: {
|
|
head: false,
|
|
module: false,
|
|
console: false,
|
|
importScripts: true
|
|
},
|
|
ignores: ['src/shared/vendor/**']
|
|
},
|
|
files: [ 'Gruntfile.js', 'src/**' ]
|
|
},
|
|
watch: {
|
|
main: {
|
|
files: [ 'Gruntfile.js', 'src/**', 'examples/**' ],
|
|
tasks: 'default',
|
|
options: {
|
|
livereload: true
|
|
}
|
|
}
|
|
},
|
|
connect: {
|
|
server: {
|
|
options: {
|
|
port: port,
|
|
base: '.',
|
|
keepalive: true,
|
|
debug: true
|
|
}
|
|
}
|
|
},
|
|
notify: {
|
|
watch: {
|
|
options: {
|
|
// title: 'Watching files', // optional
|
|
message: 'Watching for changes' //required
|
|
}
|
|
},
|
|
finish: {
|
|
options: {
|
|
// title: 'Watching files', // optional
|
|
message: 'Build complete' //required
|
|
}
|
|
}
|
|
},
|
|
notify_hooks: {
|
|
options: {
|
|
enabled: true,
|
|
max_jshint_notifications: 5,
|
|
title: "ViziCities"
|
|
}
|
|
}
|
|
});
|
|
|
|
// Load the plugins
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
grunt.loadNpmTasks('grunt-contrib-concat');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-contrib-connect');
|
|
grunt.loadNpmTasks('grunt-notify');
|
|
|
|
// Default task(s).
|
|
// grunt.registerTask('default', ['jshint', 'concat', 'uglify', 'notify:finish']);
|
|
grunt.registerTask('default', ['jshint', 'concat', 'notify:finish']);
|
|
|
|
// Serve examples locally
|
|
grunt.registerTask('serve', ['connect']);
|
|
|
|
// Build files and refresh content on file changes
|
|
grunt.registerTask('dev', ['default', 'notify:watch', 'watch']);
|
|
|
|
// Run tests
|
|
grunt.registerTask('test', ['jshint']);
|
|
|
|
grunt.task.run('notify_hooks');
|
|
}; |