forked from chartist-js/chartist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy.js
More file actions
71 lines (69 loc) · 1.46 KB
/
Copy pathcopy.js
File metadata and controls
71 lines (69 loc) · 1.46 KB
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
69
70
71
/**
* copy
* ====
*
* Copies remaining files to places other tasks can use.
*
* Link: https://github.com/gruntjs/grunt-contrib-copy
*/
'use strict';
module.exports = function (grunt) {
return {
public: {
files: [
{
expand: true,
dot: true,
cwd: '<%= pkg.config.site %>',
dest: '<%= pkg.config.public %>',
src: [
'*.{ico,png,txt}',
'.htaccess',
'*.html',
'bower_components/**/*',
'images/{,*/}*.{webp}',
'fonts/*'
]
},
{
expand: true,
cwd: '<%= pkg.config.tmp %>/images',
dest: '<%= pkg.config.public %>/images',
src: ['generated/*']
},
{
expand: true,
cwd: '<%= pkg.config.tmp %>',
dest: '<%= pkg.config.public %>',
src: [
'*.html'
]
}
]
},
dist: {
files: [
{
expand: true,
cwd: '<%= pkg.config.src %>/styles',
dest: '<%= pkg.config.dist %>/scss/',
src: [
'modules/**/*.scss',
'settings/**/*.scss',
'*.scss'
]
},
{
expand: true,
cwd: '.tmp/styles',
dest: '<%= pkg.config.dist %>/',
src: 'chartist.css*'
},
{
dest: '<%= pkg.config.dist %>/',
src: 'LICENSE'
}
]
}
};
};