-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathTaskfile.yml
More file actions
50 lines (40 loc) · 1.09 KB
/
Taskfile.yml
File metadata and controls
50 lines (40 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: "3"
includes:
api:
taskfile: ./projects/ecoindex_api/Taskfile.yml
dir: ./projects/ecoindex_api/
cli:
taskfile: ./projects/ecoindex_cli/Taskfile.yml
dir: ./projects/ecoindex_cli/
compute:
taskfile: ./projects/ecoindex_compute/Taskfile.yml
dir: ./projects/ecoindex_compute/
scraper:
taskfile: ./projects/ecoindex_scraper/Taskfile.yml
dir: ./projects/ecoindex_scraper/
uv:
taskfile: ./tasks/UvTaskfile.yml
quality:
taskfile: ./tasks/QualityTaskFile.yml
vars:
PACKAGE_NAME: ecoindex-monorepo
OUT_DIR: dist
tasks:
project-check:
desc: Check polylith structure project
cmds:
- uv run poly check
project-sync:
desc: Sync polylith structure project
cmds:
- uv run poly sync
bump:
desc: Bump the Main project version with rules:major, minor, patch, premajor, preminor, prepatch or prerelease.
cmds:
- task: uv:bump
vars:
PROJECT_NAME: monorepo
PACKAGE_NAME: ecoindex-monorepo
VERSION_FILE_PATH: "VERSION"
VERSION_RULE: "{{.CLI_ARGS}}"
silent: true