mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
const config = require('./release.json');
|
|
const {unlink} = require('fs')
|
|
|
|
const commit_message = `v${config.releases[0].newVersion}`
|
|
|
|
unlink('./release.json', () => {})
|
|
|
|
console.log(commit_message)
|