diff --git a/.woodpecker/.frontend.yml b/.woodpecker/.frontend.yml index 6ae885a..e78bc8a 100644 --- a/.woodpecker/.frontend.yml +++ b/.woodpecker/.frontend.yml @@ -21,12 +21,14 @@ steps: depends_on: ["prepare:version"] commands: - pnpm install + - ls -ltr ./node_modules directory: frontend "lint:style": image: *frontend_image depends_on: ["prepare:frontend"] commands: + - ls -ltr ./node_modules - pnpm run prettier directory: frontend diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 28cce91..f022012 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -13,10 +13,10 @@ "forceConsistentCasingInFileNames": true, "baseUrl": ".", "paths": { - "~/*": ["./app/*"] + "~/*": ["./app/*"], }, // Remix takes care of building everything in `remix build`. - "noEmit": true - } + "noEmit": true, + }, }