forked from TYPO3-CMS/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
68 lines (63 loc) · 1.75 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
banner: '/*!\n' +
' * This file is part of the TYPO3 CMS project.\n' +
' *\n' +
' * It is free software; you can redistribute it and/or modify it under\n' +
' * the terms of the GNU General Public License, either version 2\n' +
' * of the License, or any later version.\n' +
' *\n' +
' * For the full copyright and license information, please read the\n' +
' * LICENSE.txt file that was distributed with this source code.\n' +
' *\n' +
' * The TYPO3 project - inspiring people to share!\n' +
' */\n',
paths: {
resources: 'Resources/',
private: '<%= paths.resources %>Private/Styles',
public: '<%= paths.resources %>Public/Css'
},
less: {
styleguide: {
options: {
banner: '<%= banner %>',
outputSourceFiles: true
},
files: {
"<%= paths.public %>/styles.css": "<%= paths.private %>/backend.less"
}
}
},
watch: {
less: {
files: '<%= paths.private %>/**/*.less',
tasks: 'less'
}
}
});
// Register tasks
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
/**
* grunt default task
*
* call "$ grunt"
*
* this will trigger the CSS build
*/
grunt.registerTask('default', ['less']);
};