mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-11-09 02:07:29 -06:00
always create requirements.txt, even if empty
This commit is contained in:
parent
098add3bb7
commit
49c3093a99
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@
|
|||
"version": "0.0.1",
|
||||
"description": "A template to quickly create decky plugins from scratch, based on TypeScript and webpack",
|
||||
"scripts": {
|
||||
"prepare": "if [ -f requirements.txt ]; then\n\tpip3 install -U -r requirements.txt -t py_modules\nfi",
|
||||
"prepare": "touch requirements.txt && pip3 install --upgrade -r requirements.txt -t py_modules",
|
||||
"build": "shx rm -rf dist && rollup -c",
|
||||
"watch": "rollup -c -w",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue