diff --git a/package.json b/package.json index 2cfd437..1fcf689 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "immersive", "private": true, - "version": "0.0.8-11", + "version": "0.0.8-12", "type": "module", "engines": { "node": ">=18.0.0" diff --git a/versionBump.js b/versionBump.js index 2ae9d68..287a4ad 100644 --- a/versionBump.js +++ b/versionBump.js @@ -19,7 +19,6 @@ const getPackageJson = async () => { json.version = newVersion; await fs.writeFile('package.json', JSON.stringify(json, null, 2)); let indexHtml = await fs.readFile('index.html', 'utf8'); - console.log(indexHtml); indexHtml = indexHtml.replace('@@VERSION', newVersion); indexHtml = indexHtml.replace('@@DATE', new Date().toISOString()); const gitId = (await getGitId()).replace('\n', '');