diff --git a/ecosystem.config.js b/ecosystem.config.js index 8694b84..2338d96 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -6,7 +6,7 @@ module.exports = { apps: [ { name: "estaticos", - script: "pnpm i && pnpm run dev" + script: "pnpm i --ignore-scripts --frozen-lockfile && pnpm run dev" }, ], }; diff --git a/ferramentas/rodar_servidor.tsx b/ferramentas/rodar_servidor.tsx index a119ab5..5b470a1 100644 --- a/ferramentas/rodar_servidor.tsx +++ b/ferramentas/rodar_servidor.tsx @@ -116,6 +116,6 @@ gerar.then(() => { fastify.listen({ port: Number(PORTA) }, (err, address) => { if (err) throw err; - console.log(`Servidor ${PREFIXO} Rodando em ${address}`); + console.log(`${new Date().toISOString()} Servidor ${PREFIXO} Rodando em ${address}`); }); }); diff --git a/package.json b/package.json index 20cfa56..1b20628 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "p-estaticos", - "version": "0.37.0", + "version": "0.38.0", "description": "", "main": "dist/index.js", "scripts": {