From 38faae33bf5bdb0101a6b3424a7b19917a8a607f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Mon, 28 Aug 2023 18:12:04 +0200 Subject: [PATCH] ci, chore: remove broken `sources` from taskfile should fix but we're using this only for dev anyway, so whatever --- Taskfile.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 65f1274..ada27f9 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -80,18 +80,12 @@ tasks: build:jslib: deps: [build:wasmlib] dir: tools/upend_js - sources: - - ./*.ts - - ./package.lock cmds: - pnpm install --frozen-lockfile - pnpm build build:wasmlib: dir: tools/upend_wasm - sources: - - ./**/*.rs - - Cargo.toml cmds: - wasm-pack build --target web @@ -133,7 +127,7 @@ tasks: dev:update_tool_deps: cmds: - task: build:jslib - - rm -vr webui/node_modules/.vite/deps + - rm -vrf webui/node_modules/.vite/deps dev: deps: [dev:backend, dev:frontend]