-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrename.js
More file actions
38 lines (32 loc) · 681 Bytes
/
rename.js
File metadata and controls
38 lines (32 loc) · 681 Bytes
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
// var path = require('path');
var cdkit = require('cdkit');
var fromName = 'base';
var toName = 'load';
var curPathName = __dirname.split('/').pop();
var map = [
curPathName + '/package.json',
curPathName + '/README.md',
curPathName + '/config/rollup.js',
curPathName + '/test/browser/index.html',
];
const config = [
{
root: '.',
rules: [
{
test: function (pathname) {
return map.some(function (u) {
return pathname.indexOf(u) > -1;
});
},
replace: [
{
from: fromName,
to: toName,
},
],
},
],
},
];
cdkit.run('replace', config);