version bump

This commit is contained in:
cupcakearmy 2022-01-02 14:42:46 +01:00
parent 5a0a91ec87
commit ec5b7eafaa
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"main": "./dist/index.js",
"engines": {

View File

@ -4,7 +4,6 @@ export const Version = process.env['npm_package_version']
export function init(bot: Bot) {
bot.command('/version', async (ctx) => {
// ctx.reply('Version: ' + version)
ctx.reply(`Version: ${Version}`)
})
}