piskel/Gruntfile.js

308 lines
9.6 KiB
JavaScript
Raw Normal View History

2013-05-28 01:57:39 +04:00
/**
* How to run grunt tasks:
* - At project root, run 'npm install' - It will install nodedependencies declared in package,json in <root>/.node_modules
* - install grunt CLI tools globally, run 'npm install -g grunt-cli'
* - run a grunt target defined in Gruntfiles.js, ex: 'grunt lint'
*
* Note: The 'ghost' grunt task have special deps on CasperJS and phantomjs.
* For now, It's configured to run only on TravisCI where these deps are
2013-05-28 01:57:39 +04:00
* correctly defined.
* If you run this task locally, it may require some env set up first.
2013-05-28 01:57:39 +04:00
*/
2014-03-17 00:15:34 +04:00
var SOURCE_FOLDER = "src";
2013-05-27 02:02:48 +04:00
module.exports = function(grunt) {
var dateFormat = require('dateformat');
var now = new Date();
var version = '-' + dateFormat(now, "yyyy-mm-dd-hh-MM");
2014-03-17 00:15:34 +04:00
var mapToSrcFolder = function (path) {return [SOURCE_FOLDER, path].join('/');};
var piskelScripts = require('./src/piskel-script-list.js').scripts.map(mapToSrcFolder);
var piskelStyles = require('./src/piskel-style-list.js').styles.map(mapToSrcFolder);
2013-08-11 15:37:23 +04:00
var getGhostConfig = function (delay) {
return {
2014-03-17 00:15:34 +04:00
filesSrc : ['test/integration/casperjs/*_test.js'],
2013-08-11 15:37:23 +04:00
options : {
args : {
2014-07-21 01:55:10 +04:00
baseUrl : 'http://localhost:' + '<%= express.test.options.port %>/',
2013-08-11 15:37:23 +04:00
mode : '?debug',
delay : delay
},
2014-07-23 21:42:08 +04:00
async : false,
2013-08-11 15:37:23 +04:00
direct : false,
logLevel : 'info',
printCommand : false,
printFilePaths : true
}
};
};
2014-07-21 01:55:10 +04:00
var getExpressConfig = function (source, port, host) {
return {
options: {
port: port,
hostname : host || 'localhost',
bases: [source]
}
};
};
grunt.initConfig({
clean: {
before: ['dest'],
after: ['build/closure/closure_compiled_binary.js']
},
jshint: {
options: {
indent:2,
undef : true,
latedef : true,
browser : true,
trailing : true,
curly : true,
es3 : true,
2013-09-07 19:50:43 +04:00
globals : {'$':true, 'jQuery' : true, 'pskl':true, 'Events':true, 'Constants':true, 'console' : true, 'module':true, 'require':true}
},
files: [
'Gruntfile.js',
'package.json',
2014-03-17 00:15:34 +04:00
'src/js/**/*.js',
'!src/js/lib/**/*.js' // Exclude lib folder (note the leading !)
]
},
express: {
2014-07-21 01:55:10 +04:00
test: getExpressConfig('src', 9991),
regular: getExpressConfig('dest', 9001),
debug: getExpressConfig('src', 9901)
},
open : {
regular : {
path : 'http://localhost:9001/'
},
debug : {
path : 'http://localhost:9901/?debug'
}
},
watch: {
scripts: {
files: ['src/**/*.*'],
tasks: ['merge'],
options: {
spawn: false
}
}
},
ghost : {
'default' : getGhostConfig(5000),
2014-07-21 01:55:10 +04:00
'local' : getGhostConfig(50)
},
concat : {
2013-12-19 02:22:25 +04:00
js : {
options : {
separator : ';'
},
2013-08-11 15:37:23 +04:00
src : piskelScripts,
dest : 'dest/js/piskel-packaged' + version + '.js'
2013-12-19 02:22:25 +04:00
},
css : {
src : piskelStyles,
dest : 'dest/css/piskel-style-packaged' + version + '.css'
}
},
uglify : {
options : {
mangle : true
},
my_target : {
files : {
'dest/js/piskel-packaged-min.js' : ['dest/js/piskel-packaged' + version + '.js']
}
}
},
replace: {
main: {
options: {
patterns: [
{
match: 'version',
replacement: version
}
]
},
files: [
{expand: true, flatten: true, src: ['src/piskel-boot-0.1.0.js'], dest: 'dest/'}
]
},
editor: {
options: {
patterns: [
{
match: /templates\//g,
replacement: "../templates"+version+"/"
},{
match: /^(.|[\r\n])*<!--body-main-start-->/,
replacement: "",
description : "Remove everything before body-main-start comment"
},{
match: /<!--body-main-end-->(.|[\r\n])*$/,
replacement: "",
description : "Remove everything after body-main-end comment"
},{
match: /([\r\n]) /g,
replacement: "$1",
description : "Decrease indentation by one"
}
]
},
files: [
{src: ['src/index.html'], dest: 'dest/piskelapp-partials/main-partial.html'}
]
}
},
copy: {
main: {
files: [
{src: ['dest/js/piskel-packaged-min.js'], dest: 'dest/js/piskel-packaged-min' + version + '.js'},
2014-06-22 00:39:37 +04:00
{src: ['src/logo.png'], dest: 'dest/logo.png'},
{src: ['src/js/lib/iframeLoader-0.1.0.js'], dest: 'dest/js/lib/iframeLoader-0.1.0.js'},
{src: ['src/js/lib/gif/gif.ie.worker.js'], dest: 'dest/js/lib/gif/gif.ie.worker.js'},
{expand: true, src: ['img/**'], cwd: 'src/', dest: 'dest/', filter: 'isFile'},
2014-07-05 13:45:10 +04:00
{expand: true, src: ['css/fonts/**'], cwd: 'src/', dest: 'dest/', filter: 'isFile'},
2014-07-12 23:14:07 +04:00
{expand: true, src: ['**/*.html'], cwd: 'src/', dest: 'dest/', filter: 'isFile'}
]
}
},
closureCompiler: {
options: {
// [REQUIRED] Path to closure compiler
2014-03-17 00:15:34 +04:00
compilerFile: 'build/closure/closure_compiler_20130823.jar',
// [OPTIONAL] set to true if you want to check if files were modified
// before starting compilation (can save some time in large sourcebases)
//checkModified: true,
// [OPTIONAL] Set Closure Compiler Directives here
compilerOpts: {
/**
* Keys will be used as directives for the compiler
* values can be strings or arrays.
* If no value is required use null
*/
//compilation_level: 'ADVANCED_OPTIMIZATIONS',
compilation_level: 'SIMPLE_OPTIMIZATIONS',
2014-03-17 00:15:34 +04:00
externs: ['build/closure/piskel-closure-externs.js'],
// Inject some constants in JS code, could we use that for appengine wiring ?
//define: ["'goog.DEBUG=false'"],
warning_level: 'verbose',
jscomp_off: ['checkTypes', 'fileoverviewTags'],
summary_detail_level: 1,
language_in: 'ECMASCRIPT3'
//output_wrapper: '"(function(){%output%}).call(this);"'
},
execOpts: { // [OPTIONAL] Set exec method options
maxBuffer: 999999 * 1024
}
},
compile: {
/**
*[OPTIONAL] Here you can add new or override previous option of the Closure Compiler Directives.
* IMPORTANT! The feature is enabled as a temporary solution to [#738](https://github.com/gruntjs/grunt/issues/738).
* As soon as issue will be fixed this feature will be removed.
*/
TEMPcompilerOpts: {
},
src: [
2014-03-17 00:15:34 +04:00
'src/js/**/*.js',
'src/piskel-boot-0.1.0.js',
2014-03-17 00:15:34 +04:00
'src/piskel-script-list.js',
'!src/js/lib/**/*.js'
],
// This generated JS binary is currently not used and even excluded from source control using .gitignore.
2014-03-17 00:15:34 +04:00
dest: 'build/closure/closure_compiled_binary.js'
}
},
2014-08-14 03:50:33 +04:00
karma: {
unit: {
configFile: 'karma.conf.js'
}
},
nodewebkit: {
options: {
build_dir: './dest/desktop/', // destination folder of releases.
mac: true,
win: true,
linux32: true,
linux64: true
},
src: ['./dest/**/*', "./package.json", "!./dest/desktop/"]
}
});
2013-05-27 01:58:59 +04:00
grunt.config.set('leadingIndent.indentation', 'spaces');
grunt.config.set('leadingIndent.jsFiles', {
2014-03-17 00:15:34 +04:00
src: [
'src/js/**/*.js',
'!src/js/lib/**/*.js'
]
});
grunt.config.set('leadingIndent.cssFiles', {
2014-03-17 00:15:34 +04:00
src: ['src/css/**/*.css']
});
2013-05-27 01:58:59 +04:00
grunt.loadNpmTasks('grunt-closure-tools');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-express');
grunt.loadNpmTasks('grunt-replace');
grunt.loadNpmTasks('grunt-ghost');
grunt.loadNpmTasks('grunt-open');
2014-08-14 03:50:33 +04:00
grunt.loadNpmTasks('grunt-karma');
2013-08-10 16:47:26 +04:00
grunt.loadNpmTasks('grunt-leading-indent');
grunt.loadNpmTasks('grunt-node-webkit-builder');
grunt.loadNpmTasks('grunt-contrib-copy');
2013-08-11 22:51:04 +04:00
// Validate
2013-08-10 16:47:26 +04:00
grunt.registerTask('lint', ['leadingIndent:jsFiles', 'leadingIndent:cssFiles', 'jshint']);
2013-05-27 01:58:59 +04:00
2014-08-14 03:50:33 +04:00
// karma/unit-tests task
grunt.registerTask('unit-test', ['karma']);
// Validate & Test
2014-08-14 03:50:33 +04:00
grunt.registerTask('test', ['lint', 'compile', 'unit-test','express:test', 'ghost:default']);
2013-08-11 22:51:04 +04:00
// Validate & Test (faster version) will NOT work on travis !!
2014-07-21 01:55:10 +04:00
grunt.registerTask('precommit', ['lint', 'compile', 'express:test', 'ghost:local']);
2013-08-11 22:51:04 +04:00
// Compile JS code (eg verify JSDoc annotation and types, no actual minified code generated).
grunt.registerTask('compile', ['closureCompiler:compile', 'clean:after']);
2013-08-11 22:51:04 +04:00
2014-07-12 23:14:07 +04:00
grunt.registerTask('rep', ['replace:main', 'replace:editor']);
grunt.registerTask('merge', ['concat:js', 'concat:css', 'uglify', 'rep', 'copy']);
2013-12-19 02:22:25 +04:00
2013-08-11 22:51:04 +04:00
// Validate & Build
grunt.registerTask('default', ['clean:before', 'lint', 'compile', 'merge']);
2013-08-11 22:51:04 +04:00
// Build stand alone app with nodewebkit
grunt.registerTask('desktop', ['default', 'nodewebkit']);
grunt.registerTask('server', ['merge', 'express:regular', 'open:regular', 'express-keepalive']);
// Start webserver and watch for changes
grunt.registerTask('server:watch', ['server', 'watch']);
// Start webserver on src folder, in debug mode
grunt.registerTask('server:debug', ['express:debug', 'open:debug', 'express-keepalive']);
2013-05-27 02:02:48 +04:00
};