-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
38 lines (35 loc) · 1005 Bytes
/
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
/**
* Grunt Task Wrangler
*
* @copyright Copyright © 2016 Locomotive
* @license Licensed under the MIT license.
*/
'use strict';
module.exports = function (grunt)
{
var path = require('path');
require('load-grunt-config')(grunt, {
configPath: path.join(process.cwd(), 'build/grunt/config'),
data: {
paths: {
grunt: 'build/grunt',
npm: 'node_modules',
composer: 'vendor',
dist: 'assets/dist',
fonts: 'assets/dist/fonts',
js: {
src: 'assets/src/scripts',
dist: 'assets/dist/scripts'
},
css: {
src: 'assets/src/styles',
dist: 'assets/dist/styles'
},
img: {
src: 'assets/src/images',
dist: 'assets/dist/images'
}
}
}
});
};