forked from Choices-js/Choices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbump-cache.js
54 lines (44 loc) · 1.11 KB
/
bump-cache.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
42
43
44
45
46
47
48
49
50
51
52
53
54
const fs = require('fs');
const path = require('path');
const config = {
files: ['public/index.html'],
};
/**
* Convert node arguments into an object
* @return {Object} Arguments
*/
const argvToObject = () => {
const args = {};
let arg = null;
process.argv.forEach((val, index) => {
if (/^--/.test(val)) {
arg = {
index,
name: val.replace(/^--/, ''),
};
return;
}
if (arg && arg.index + 1 === index) {
args[arg.name] = val;
}
});
return args;
};
/**
* Loop through files updating the current version
* @param {Object} config
*/
const updateVersion = ({ files }) => {
const args = argvToObject();
const version = args.current;
console.log(`Updating version to ${version}`);
files.forEach(file => {
const filePath = path.join(__dirname, file);
const regex = new RegExp(/\?version=(.*?)\"/, 'g');
let contents = fs.readFileSync(filePath, 'utf-8');
contents = contents.replace(regex, `?version=${version}"`);
fs.writeFileSync(filePath, contents);
});
console.log(`Updated version to ${version}`);
};
updateVersion(config);