Skip to content

Commit b00c964

Browse files
committed
Add 'make poetry-update'
1 parent 7fb5396 commit b00c964

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,11 +926,18 @@ node_modules: package-lock.json
926926

927927
.PHONY: npm-update
928928
npm-update: node-check | node_modules
929-
npx updates -cu
929+
npx updates -u -f package.json
930930
rm -rf node_modules package-lock.json
931931
npm install --package-lock
932932
@touch node_modules
933933

934+
.PHONY: poetry-update
935+
poetry-update: node-check | node_modules
936+
npx updates -u -f pyproject.toml
937+
rm -rf .venv poetry.lock
938+
poetry install
939+
@touch .venv
940+
934941
.PHONY: fomantic
935942
fomantic:
936943
rm -rf $(FOMANTIC_WORK_DIR)/build

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"stylelint-declaration-strict-value": "1.9.2",
7777
"stylelint-stylistic": "0.4.2",
7878
"svgo": "3.0.2",
79-
"updates": "14.2.4",
79+
"updates": "14.2.6",
8080
"vitest": "0.32.2"
8181
},
8282
"browserslist": [

0 commit comments

Comments
 (0)