-
Notifications
You must be signed in to change notification settings - Fork 1
/
rename.js
41 lines (35 loc) · 886 Bytes
/
rename.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
var path = require('path');
var cdkit = require('cdkit')
var fromName = 'base';
var toName = 'storage';
function getFullPath (filename) {
return path.join(__dirname, filename)
}
var map = [
getFullPath('package.json'),
getFullPath('README.md'),
getFullPath('config/rollup.js'),
getFullPath('test/browser/index.html'),
getFullPath('demo/demo-global.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);