From 4af743e9e029c87a29c8ffe8df623d99c349bb05 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 2 Jun 2024 19:18:24 -0700 Subject: [PATCH] dont modify pip_dist to reduce git noise --- bin/lock_pkgs.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bin/lock_pkgs.sh b/bin/lock_pkgs.sh index 1a960eab..4ae07eff 100755 --- a/bin/lock_pkgs.sh +++ b/bin/lock_pkgs.sh @@ -63,14 +63,15 @@ echo pdm lock --group=':all' --production --lockfile pdm.lock --strategy="cross_platform" pdm sync --group=':all' --production --lockfile pdm.lock --clean pdm export --group=':all' --production --lockfile pdm.lock --without-hashes -o requirements.txt -cp ./pdm.lock ./pip_dist/ -cp ./requirements.txt ./pip_dist/ +# cp ./pdm.lock ./pip_dist/ +# cp ./requirements.txt ./pip_dist/ + # dev pdm lock --group=':all' --dev --lockfile pdm.dev.lock --strategy="cross_platform" pdm sync --group=':all' --dev --lockfile pdm.dev.lock --clean pdm export --group=':all' --dev --lockfile pdm.dev.lock --without-hashes -o requirements-dev.txt -cp ./pdm.dev.lock ./pip_dist/ -cp ./requirements-dev.txt ./pip_dist/ +# cp ./pdm.dev.lock ./pip_dist/ +# cp ./requirements-dev.txt ./pip_dist/ echo echo "[+] Generating package-lock.json from package.json..."