-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.js
38 lines (34 loc) · 1.24 KB
/
publish.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
const fs = require('fs');
const { execSync } = require('child_process');
// Function to update the version in README.md
function updateReadmeVersion(newVersion) {
const readmePath = './README.md';
let readmeContent = fs.readFileSync(readmePath, 'utf8');
// This regex matches the version number in the URLs found in your README.md
// Adjust the regex if your URL format changes
const versionRegex = /HTTP%20Mac%20Menu-(\d+\.\d+\.\d+)/g;
readmeContent = readmeContent.replace(
versionRegex,
`HTTP%20Mac%20Menu-${newVersion}`
);
fs.writeFileSync(readmePath, readmeContent);
}
const type = process.argv[2]; // Expects 'patch', 'minor', or 'major'
if (!['patch', 'minor', 'major'].includes(type)) {
console.error('Invalid version type. Use patch, minor, or major.');
process.exit(1);
}
try {
// Bump version
execSync(`npm version ${type}`, { stdio: 'inherit' });
// Get the new version number
const newVersion = require('./package.json').version;
// Update README.md with the new version
updateReadmeVersion(newVersion);
// Build and upload
execSync('npm run dist', { stdio: 'inherit' });
execSync('./upload.sh', { stdio: 'inherit' });
console.log('done');
} catch (error) {
console.error('An error occurred:', error);
}