From 66aeb54b386a4b011df3f9af9a62cea5a59652a1 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Tue, 17 Oct 2023 23:55:22 -0600 Subject: [PATCH] refactor: :construction_worker: Verbose logging and serve in docker-compose --- docker-compose.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ccec2a3..a0fc0e1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3" services: build: build: . - command: build + command: serve volumes: - "./_src:/app/_src:ro" - "./_site:/app/_site:rw" diff --git a/package.json b/package.json index 66b84bd..27819e7 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "description": "Public website for Galactic Fortress 4", "repository": "https://gitea.ksn.gf4/gf4/www", "scripts": { - "build": "npx @11ty/eleventy --quiet", - "serve": "npx @11ty/eleventy --quiet --serve" + "build": "npx @11ty/eleventy", + "serve": "npx @11ty/eleventy --serve" }, "author": "Keith Irwin", "license": "UNLICENSED",