mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
60 lines
1.8 KiB
module.exports = function(grunt) {
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
jshint: {
|
|
files: ['gruntfile.js', 'lib/js/joypixels.js']
|
|
},
|
|
jsonlint: {
|
|
files: {
|
|
src: ['emoji.json','emoji_strategy.json']
|
|
}
|
|
},
|
|
// BUILD EMOJI ONE AWESOME CSS (SASS -> CSS)
|
|
sass: {
|
|
dist: {
|
|
files: {
|
|
'extras/css/joypixels-awesome.css': 'lib/joypixels-awesome/joypixels-awesome.scss'
|
|
}
|
|
}
|
|
},
|
|
uglify: {
|
|
options: {
|
|
// the banner is inserted at the top of the output
|
|
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n',
|
|
mangle: false,
|
|
ASCIIOnly: true
|
|
},
|
|
dist: {
|
|
files: {
|
|
'lib/js/joypixels.min.js': ['lib/js/joypixels.js']
|
|
}
|
|
}
|
|
},
|
|
// Minify Project CSS
|
|
cssmin: {
|
|
target: {
|
|
files: {
|
|
'extras/css/joypixels.min.css': ['extras/css/joypixels.css']
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
files: ['<%= jshint.files %>'],
|
|
tasks: ['jshint']
|
|
},
|
|
// run QUnit tests
|
|
qunit: {
|
|
all: ['lib/js/tests/tests.html']
|
|
}
|
|
|
|
});
|
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-jsonlint');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
|
grunt.loadNpmTasks('grunt-contrib-qunit');
|
|
grunt.registerTask('default', ['jshint','jsonlint', 'sass', 'uglify', 'cssmin']);
|
|
grunt.registerTask('travis', ['qunit']);
|
|
};
|