Skip to content

Commit d217e25

Browse files
authored
feat(no-release): no default for dev lockfile (#885)
1 parent 3b6aae8 commit d217e25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dev-%: install
5151
# Prepare the development environment.
5252
# Install the package in editable mode with all optional dependencies and pre-commit hook.
5353
dev: install
54-
pdm install --lockfile pdm.dev.lock
54+
pdm install --lockfile pdm.dev.lock --no-default --dev
5555
if [ "$(CI)" != "true" ] && command -v pre-commit > /dev/null 2>&1; then pre-commit install; fi
5656

5757
# Lock both prod and dev dependencies.

template/Makefile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dev-%: install
5555
# Prepare the development environment.
5656
# Install the package in editable mode with all optional dependencies and pre-commit hook.
5757
dev: install
58-
pdm install --lockfile pdm.dev.lock
58+
pdm install --lockfile pdm.dev.lock --no-default --dev
5959
if [ "$(CI)" != "true" ] && command -v pre-commit > /dev/null 2>&1; then pre-commit install; fi
6060

6161
# Lock both prod and dev dependencies.

0 commit comments

Comments
 (0)