forked from SAP/ui5-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copy.js
37 lines (35 loc) · 799 Bytes
/
copy.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
'use strict';
/**
* Copies remaining files.
* @param {Object} grunt
* @param {Object} config
*/
module.exports = function (grunt, config) {
return {
dist: {
files: [{
expand: true,
dot: true,
cwd: '<%= app %>',
dest: '<%= dist %>',
src: [
'*.txt',
'html/**/*.html',
'images/**/*.*',
'manifest.json'
]
}]
},
license: {
files: [{
expand: true,
dot: true,
cwd: './',
dest: '<%= dist %>',
src: [
'*.txt'
]
}]
}
};
};