7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
|
|
const fs = require('fs');
|
||
|
|
const htmlPath = './index.html';
|
||
|
|
let html = fs.readFileSync(htmlPath, 'utf-8');
|
||
|
|
html = html.replace('v=0.0.3', 'v=0.0.4');
|
||
|
|
fs.writeFileSync(htmlPath, html);
|
||
|
|
console.log('Done');
|