diff --git a/.woodpecker/.frontend.yml b/.woodpecker/.frontend.yml index c157b2a..3c2e259 100644 --- a/.woodpecker/.frontend.yml +++ b/.woodpecker/.frontend.yml @@ -21,32 +21,32 @@ steps: image: *frontend_image group: prepare commands: - - pnpm install + - npm install directory: frontend "lint:style": image: *frontend_image commands: - - pnpm run prettier + - npm run prettier directory: frontend "lint:analyze": image: *frontend_image commands: - - pnpm run lint + - npm run lint directory: frontend "build:frontend": image: *frontend_image commands: - - pnpm run build + - npm run build directory: frontend "build:tsc": image: *frontend_image commands: - - pnpm add typescript - - pnpm run typecheck + - npm install -D typescript + - npm run typecheck directory: frontend "analyze:sbom": @@ -66,5 +66,5 @@ steps: when: - event: [manual] -depends_on: - - "lint_general" + #depends_on: + # - "lint_general" diff --git a/frontend/package.json b/frontend/package.json index 197fb34..2e0e3dd 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -9,9 +9,9 @@ "start": "remix-serve ./build/index.js", "typecheck": "tsc", "lint": "eslint app", - "lint:fix": "pnpm run lint --fix", - "prettier": "pnpm exec prettier . --check", - "prettier:fix": "pnpm exec prettier . --write" + "lint:fix": "npm run lint --fix", + "prettier": "npx prettier . --check", + "prettier:fix": "npx prettier . --write" }, "dependencies": { "@remix-run/css-bundle": "^2.2.0", @@ -27,8 +27,9 @@ "@remix-run/eslint-config": "^2.2.0", "@types/react": "^18.2.20", "@types/react-dom": "^18.2.7", - "eslint": "^8.38.0", + "eslint": "^8.56.0", "eslint-config-prettier": "9.0.0", + "lint": "^0.8.19", "prettier": "3.0.3", "typescript": "^5.1.6" },