generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjustfile
More file actions
18 lines (14 loc) · 796 Bytes
/
justfile
File metadata and controls
18 lines (14 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
test *args:
devcontainer features test -p . {{ args }}
# Bump version for a specific feature (nushell version)
bump-version feature type="patch" dry_run="":
nu scripts/bump-version.nu --feature {{ feature }} --type {{ type }} {{ dry_run }}
# Bump version for all features (nushell version)
bump-all-versions type="patch" dry_run="":
nu scripts/bump-version.nu --all --type {{ type }} {{ dry_run }}
# Bump version for a specific feature (python version - legacy)
bump-version-py feature type="patch" dry_run="":
python3 scripts/bump-version.py --feature {{ feature }} --type {{ type }} {{ dry_run }}
# Bump version for all features (python version - legacy)
bump-all-versions-py type="patch" dry_run="":
python3 scripts/bump-version.py --all --type {{ type }} {{ dry_run }}