version 0.4.0 prepare to evolution-api

This commit is contained in:
Gabriel Pastori
2023-12-11 14:58:47 -03:00
parent 6191c8b3f2
commit f77436c5ce
5 changed files with 23 additions and 9 deletions

View File

@@ -8,8 +8,6 @@ module.exports = async (argv) => {
const isEvolutionInstalled = verifyEvolutionInstallation();
if (!isEvolutionInstalled) return;
console.log(`🔃 Reverting to Evolution-Api v${v}...`);
await revertToVersion(v);
console.log(`🔃 Reverted to Evolution-Api v${v} successfully`);

7
lib/postinstall.js Normal file
View File

@@ -0,0 +1,7 @@
const build = require('./utils/build');
async function main() {
await build({ VITE_BASE_URL: '/manager/' });
}
main();