Compare commits

...

2 commits

Author SHA1 Message Date
441703b1a2 add start shell script 2024-09-17 20:56:31 +02:00
2b28a7ed38 finish package.json 2024-09-17 20:54:44 +02:00
2 changed files with 16 additions and 5 deletions

View file

@ -1,9 +1,15 @@
{
"name": "parsifal",
"author": "Tomáš Mládek <t@mldk.cz>",
"version": "0.0.1",
"main": "index.mts",
"scripts": {
"start": "tsx index.mts"
"start": "tsx index.mts",
"build": "true"
},
"dependencies": {
"puppeteer": "^23.3.0",
"tsx": "^4.19.1"
}
"dependencies": {
"puppeteer": "^23.3.0",
"tsx": "^4.19.1"
},
"devDependencies": {}
}

5
start.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
set -x
git pull
pnpm build
pnpm start