From fa975b9743a60834923f271e4d457675e8965587 Mon Sep 17 00:00:00 2001 From: "Luiz H. R. Silva" Date: Wed, 12 Jun 2024 19:31:23 -0300 Subject: [PATCH] . --- ecosystem.config.js | 2 +- ferramentas/rodar_servidor.tsx | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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": {