ffffng/Gruntfile.js

464 lines
14 KiB
JavaScript
Raw Normal View History

2014-05-12 20:08:19 +02:00
'use strict';
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
2016-05-16 13:33:49 +02:00
var serveStatic = require('serve-static');
2014-05-12 20:08:19 +02:00
// Define the configuration for all the tasks
grunt.initConfig({
// Project settings
yeoman: {
// configurable paths
app: require('./bower.json').appPath || 'app',
dist: 'dist'
},
// Watches files for changes and runs tasks based on the changed files
watch: {
bower: {
files: ['bower.json'],
2016-05-16 13:33:49 +02:00
tasks: ['wiredep']
2014-05-12 20:08:19 +02:00
},
js: {
files: ['<%= yeoman.app %>/scripts/{,**/}*.js', 'shared/{,**/}*.js'],
tasks: ['newer:jshint:all'],
options: {
livereload: true
}
},
compass: {
files: ['<%= yeoman.app %>/styles/{,**/}*.{scss,sass}'],
tasks: ['compass:server', 'autoprefixer']
},
gruntfile: {
files: ['Gruntfile.js']
},
livereload: {
options: {
livereload: '<%= connect.options.livereload %>'
},
files: [
'<%= yeoman.app %>/{,**/}*.html',
'.tmp/styles/{,**/}*.css',
'<%= yeoman.app %>/images/{,**/}*.{png,jpg,jpeg,gif,webp,svg}'
]
}
},
// The actual grunt server settings
connect: {
options: {
port: 9000,
// Change this to '0.0.0.0' to access the server from outside.
hostname: 'localhost',
2014-05-30 19:24:38 +02:00
livereload: 35729,
middleware: function (connect, options) {
if (!Array.isArray(options.base)) {
options.base = [options.base];
}
// Setup the proxy
var middlewares = [require('grunt-connect-proxy/lib/utils').proxyRequest];
// Serve static files.
options.base.forEach(function(base) {
2016-05-16 13:33:49 +02:00
middlewares.push(serveStatic(base));
2014-05-30 19:24:38 +02:00
});
// Make directory browse-able.
var directory = options.directory || options.base[options.base.length - 1];
2016-05-16 13:33:49 +02:00
middlewares.push(serveStatic(directory));
2014-05-30 19:24:38 +02:00
return middlewares;
}
2014-05-12 20:08:19 +02:00
},
2014-05-30 19:24:38 +02:00
proxies: [{
context: '/api/',
host: '127.0.0.1',
port: 8080
2014-06-06 21:22:57 +02:00
}, {
context: '/config.js',
host: '127.0.0.1',
port: 8080
2014-05-30 19:24:38 +02:00
}],
2014-05-12 20:08:19 +02:00
livereload: {
options: {
open: true,
base: [
'.tmp',
'<%= yeoman.app %>'
]
}
},
dist: {
options: {
base: '<%= yeoman.dist %>'
}
}
},
// Make sure code styles are up to par and there are no obvious mistakes
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
all: [
'Gruntfile.js',
'<%= yeoman.app %>/scripts/{,**/}*.js',
'shared/{,**/}*.js',
'server/{,**/}*.js',
'!server/templates/{,**/}*.template'
2014-05-12 20:08:19 +02:00
]
},
// Empties folders to start fresh
clean: {
dist: {
files: [
{
dot: true,
src: [
'.tmp',
'<%= yeoman.dist %>/*',
'!<%= yeoman.dist %>/.git*'
]
}
]
},
server: '.tmp'
},
// Add vendor prefixed styles
autoprefixer: {
options: {
browsers: ['last 1 version']
},
dist: {
files: [
{
expand: true,
cwd: '.tmp/styles/',
src: '{,*/}*.css',
dest: '.tmp/styles/'
}
]
}
},
2016-05-16 13:33:49 +02:00
wiredep: {
task: {
2014-05-12 20:08:19 +02:00
src: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
ignorePath: '<%= yeoman.app %>/bower_components/'
}
},
// Compiles Sass to CSS and generates necessary files if requested
compass: {
options: {
sassDir: '<%= yeoman.app %>/styles',
cssDir: '.tmp/styles',
generatedImagesDir: '.tmp/images/generated',
imagesDir: '<%= yeoman.app %>/images',
javascriptsDir: '<%= yeoman.app %>/scripts',
fontsDir: '<%= yeoman.app %>/fonts',
importPath: '<%= yeoman.app %>/bower_components',
httpImagesPath: '/images',
httpGeneratedImagesPath: '/images/generated',
httpFontsPath: '/fonts',
relativeAssets: false,
assetCacheBuster: false,
raw: 'Sass::Script::Number.precision = 10\n'
},
dist: {
options: {
generatedImagesDir: '<%= yeoman.dist %>/client/images/generated'
}
},
server: {
options: {
debugInfo: true
}
}
},
html2js: {
options: {
base: 'app',
htmlmin: {
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}
},
main: {
src: ['<%= yeoman.app %>/views/{*,**/*}.html'],
dest: '.tmp/scripts/templates.js'
}
},
2014-05-12 20:08:19 +02:00
// Renames files for browser caching purposes
rev: {
dist: {
files: {
src: [
'<%= yeoman.dist %>/client/scripts/{,*/}*.js',
'<%= yeoman.dist %>/client/styles/{,*/}*.css',
'<%= yeoman.dist %>/client/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
]
}
}
},
// Reads HTML for usemin blocks to enable smart builds that automatically
// concat, minify and revision files. Creates configurations in memory so
// additional tasks can operate on them
useminPrepare: {
html: '<%= yeoman.app %>/index.html',
options: {
dest: '<%= yeoman.dist %>/client',
flow: {
html: {
steps: {
js: ['concat', 'uglifyjs'],
css: ['cssmin']
},
post: {}
}
}
}
},
// Performs rewrites based on rev and the useminPrepare configuration
usemin: {
html: ['<%= yeoman.dist %>/client/{,*/}*.html'],
css: ['<%= yeoman.dist %>/client/styles/{,*/}*.css'],
options: {
assetsDirs: ['<%= yeoman.dist %>/client']
}
},
// The following *-min tasks produce minified files in the dist folder
cssmin: {
options: {
root: '<%= yeoman.app %>'
}
},
imagemin: {
dist: {
files: [
{
expand: true,
cwd: '<%= yeoman.app %>/images',
src: '{,*/}*.{png,jpg,jpeg,gif}',
dest: '<%= yeoman.dist %>/client/images'
}
]
}
},
svgmin: {
dist: {
files: [
{
expand: true,
cwd: '<%= yeoman.app %>/images',
src: '{,*/}*.svg',
dest: '<%= yeoman.dist %>/client/images'
}
]
}
},
htmlmin: {
dist: {
options: {
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeCommentsFromCDATA: true,
removeOptionalTags: true
},
files: [
{
expand: true,
cwd: '<%= yeoman.dist %>/client',
src: ['*.html', 'views/{,*/}*.html'],
dest: '<%= yeoman.dist %>/client'
}
]
}
},
2016-05-16 13:33:49 +02:00
ngAnnotate: {
2014-05-12 20:08:19 +02:00
dist: {
files: [
{
expand: true,
cwd: '.tmp/concat/scripts',
src: '*.js',
dest: '.tmp/concat/scripts'
}
]
}
},
uglify: {
options: {
mangle: false
}
},
// Copies remaining files to places other tasks can use
copy: {
dist: {
2014-05-30 19:58:07 +02:00
options: {
mode: true
},
2014-05-12 20:08:19 +02:00
files: [
{
expand: true,
dot: true,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.dist %>/client',
src: [
'*.{ico,png,txt}',
'.htaccess',
'*.html',
'views/{,**/}*.html',
'images/{,**/}*.{webp}',
'fonts/*'
]
},
{
expand: true,
cwd: '<%= yeoman.app %>/bower_components/leaflet-dist/images',
dest: '<%= yeoman.dist %>/client/styles/images',
src: ['*.png']
},
2014-05-12 20:08:19 +02:00
{
expand: true,
cwd: '.tmp/images',
dest: '<%= yeoman.dist %>/client/images',
src: ['generated/*']
},
{
expand: true,
cwd: 'shared',
dest: '<%= yeoman.dist %>/shared',
src: ['{,**/}*.js']
},
{
expand: true,
cwd: '.',
dest: '<%= yeoman.dist %>/',
src: [
'config.json.example',
'LICENSE',
'README.md'
]
2014-05-30 19:58:07 +02:00
},
2016-06-04 14:58:11 +02:00
{
expand: true,
cwd: 'admin',
dest: '<%= yeoman.dist %>/admin',
src: ['{,**}/*.*']
2014-05-12 20:08:19 +02:00
}
]
},
styles: {
expand: true,
cwd: '<%= yeoman.app %>/styles',
dest: '.tmp/styles/',
src: '{,**/}*.css'
}
},
2016-06-11 19:08:46 +02:00
// Toggle private flag in package.json when copying to dist/.
replace: {
dist: {
options: {
patterns: [{
match: /"private": true/g,
replacement: '"private": false'
}]
},
files: [{
src: ['package.json'],
dest: 'dist/',
cwd: '.'
}]
}
},
2014-05-12 20:08:19 +02:00
// Run some tasks in parallel to speed up the build process
concurrent: {
server: [
'compass:server'
],
dist: [
'compass:dist',
'imagemin',
'svgmin'
]
}
});
grunt.registerTask('serve', function (target) {
if (target === 'dist') {
2014-05-30 19:24:38 +02:00
return grunt.task.run(['build', 'connect:dist:keepalive']);
2014-05-12 20:08:19 +02:00
}
2014-05-30 19:24:38 +02:00
return grunt.task.run([
2014-05-12 20:08:19 +02:00
'clean:server',
2016-05-16 13:33:49 +02:00
'wiredep',
2014-05-12 20:08:19 +02:00
'concurrent:server',
'autoprefixer',
2014-05-30 19:24:38 +02:00
'configureProxies',
2014-05-12 20:08:19 +02:00
'connect:livereload',
'watch'
]);
});
grunt.registerTask('server', function (target) {
grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.');
grunt.task.run(['serve:' + target]);
});
grunt.registerTask('build', [
'clean:dist',
2016-05-16 13:33:49 +02:00
'wiredep',
'html2js',
2014-05-12 20:08:19 +02:00
'useminPrepare',
'concurrent:dist',
'autoprefixer',
'concat',
2016-05-16 13:33:49 +02:00
'ngAnnotate',
2014-05-12 20:08:19 +02:00
'copy:dist',
2016-06-11 19:08:46 +02:00
'replace:dist',
2014-05-12 20:08:19 +02:00
'cssmin',
'uglify',
'rev',
'usemin',
'htmlmin'
]);
grunt.registerTask('default', [
'newer:jshint',
'build'
]);
};