mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 20:28:01 +03:00
139 lines
3.2 KiB
JavaScript
139 lines
3.2 KiB
JavaScript
module.exports = function (grunt) {
|
|
|
|
var appConfig = grunt.file.readJSON('package.json');
|
|
|
|
// Load grunt tasks automatically
|
|
// see: https://github.com/sindresorhus/load-grunt-tasks
|
|
require('load-grunt-tasks')(grunt);
|
|
|
|
// Time how long tasks take. Can help when optimizing build times
|
|
// see: https://npmjs.org/package/time-grunt
|
|
require('time-grunt')(grunt);
|
|
|
|
var pathsConfig = function (appName) {
|
|
this.app = appName || appConfig.name;
|
|
|
|
return {
|
|
app: this.app,
|
|
templates: this.app + '/templates',
|
|
css: this.app + '/static/css',
|
|
sass: this.app + '/static/sass',
|
|
fonts: this.app + '/static/fonts',
|
|
images: this.app + '/static/images',
|
|
js: this.app + '/static/js',
|
|
manageScript: 'manage.py',
|
|
}
|
|
};
|
|
|
|
grunt.initConfig({
|
|
|
|
paths: pathsConfig(),
|
|
pkg: appConfig,
|
|
|
|
// see: https://github.com/gruntjs/grunt-contrib-watch
|
|
watch: {
|
|
gruntfile: {
|
|
files: ['Gruntfile.js']
|
|
},
|
|
sass: {
|
|
files: ['<%= paths.sass %>/**/*.{scss,sass}'],
|
|
tasks: ['sass:dev'],
|
|
options: {
|
|
atBegin: true
|
|
}
|
|
},
|
|
livereload: {
|
|
files: [
|
|
'<%= paths.js %>/**/*.js',
|
|
'<%= paths.sass %>/**/*.{scss,sass}',
|
|
'<%= paths.app %>/**/*.html'
|
|
],
|
|
options: {
|
|
spawn: false,
|
|
livereload: true,
|
|
},
|
|
},
|
|
},
|
|
|
|
// see: https://github.com/sindresorhus/grunt-sass
|
|
sass: {
|
|
dev: {
|
|
options: {
|
|
outputStyle: 'nested',
|
|
sourceMap: false,
|
|
precision: 10
|
|
},
|
|
files: {
|
|
'<%= paths.css %>/project.css': '<%= paths.sass %>/project.scss'
|
|
},
|
|
},
|
|
dist: {
|
|
options: {
|
|
outputStyle: 'compressed',
|
|
sourceMap: false,
|
|
precision: 10
|
|
},
|
|
files: {
|
|
'<%= paths.css %>/project.css': '<%= paths.sass %>/project.scss'
|
|
},
|
|
}
|
|
},
|
|
|
|
//see https://github.com/nDmitry/grunt-postcss
|
|
postcss: {
|
|
options: {
|
|
map: true, // inline sourcemaps
|
|
|
|
processors: [
|
|
require('pixrem')(), // add fallbacks for rem units
|
|
require('autoprefixer-core')({browsers: [
|
|
'Android 2.3',
|
|
'Android >= 4',
|
|
'Chrome >= 20',
|
|
'Firefox >= 24',
|
|
'Explorer >= 8',
|
|
'iOS >= 6',
|
|
'Opera >= 12',
|
|
'Safari >= 6'
|
|
]}), // add vendor prefixes
|
|
require('cssnano')() // minify the result
|
|
]
|
|
},
|
|
dist: {
|
|
src: '<%= paths.css %>/*.css'
|
|
}
|
|
},
|
|
|
|
// see: https://npmjs.org/package/grunt-bg-shell
|
|
bgShell: {
|
|
_defaults: {
|
|
bg: true
|
|
},
|
|
runDjango: {
|
|
cmd: 'python <%= paths.manageScript %> runserver'
|
|
},
|
|
{% if cookiecutter.use_mailhog == "y" -%}runMailHog: {
|
|
cmd: './mailhog'
|
|
},{%- endif %}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask('serve', [
|
|
{% if cookiecutter.use_mailhog == "y" -%}
|
|
'bgShell:runMailHog',
|
|
{%- endif %}
|
|
'bgShell:runDjango',
|
|
'watch'
|
|
]);
|
|
|
|
grunt.registerTask('build', [
|
|
'sass:dist',
|
|
'postcss'
|
|
]);
|
|
|
|
grunt.registerTask('default', [
|
|
'build'
|
|
]);
|
|
|
|
};
|