-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (47 loc) · 875 Bytes
/
index.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
import fs from 'node:fs';
import { findUp } from 'find-up';
const FILES = [
'VERSION',
'VERSION.txt',
'VERSION.md',
'.VERSION',
'VERSION.DEV',
'VERSION.PROD',
'VERSION.LOCAL',
'VERSION.STAGE',
'VERSION.TEST',
];
/**
* @private
*
* get VERSION file path.
*/
async function getVersionFilePath() {
const path = await findUp(FILES);
return path;
}
/**
* @public
*
* read VERSION file content.
*/
export async function readVersionFile() {
const path = await getVersionFilePath();
const content = fs.readFileSync(path, 'utf8').trim();
return content;
}
/**
* @public
*
* write VERSION file content.
*/
export async function writeVersionFile(content) {
try {
const path = await getVersionFilePath();
fs.writeFileSync(path, content, 'utf8');
return true;
} catch (error) {
console.error(error);
return false;
}
}