mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
44 lines
1005 B
JavaScript
44 lines
1005 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
|
|
require('load-grunt-tasks')(grunt);
|
|
|
|
grunt.initConfig({
|
|
|
|
compass: {
|
|
options: {
|
|
sassDir: 'static/styles',
|
|
cssDir: 'static/.tmp/styles',
|
|
generatedImagesDir: 'static/.tmp/images/generated',
|
|
imagesDir: 'static/images',
|
|
javascriptsDir: 'static/scripts',
|
|
fontsDir: 'static/styles/fonts',
|
|
importPath: 'static/components',
|
|
httpImagesPath: '/images',
|
|
httpGeneratedImagesPath: '/images/generated',
|
|
httpFontsPath: '/styles/fonts',
|
|
relativeAssets: false,
|
|
assetCacheBuster: false,
|
|
bundleExec: true,
|
|
raw: 'Sass::Script::Number.precision = 10\n'
|
|
},
|
|
dist: {
|
|
options: {
|
|
// generatedImagesDir: '<%= yeoman.dist %>/static/images/generated'
|
|
}
|
|
},
|
|
server: {
|
|
options: {
|
|
debugInfo: false
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask('heroku', [
|
|
'compass:server'
|
|
]);
|
|
|
|
};
|