summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2025-01-18 11:45:31 +0100
committerSanto Cariotti <santo@dcariotti.me>2025-01-18 11:45:31 +0100
commit8e7a9ad33cd78929bfb90c3d43f6184b44cea864 (patch)
tree96431e2f62f56aeab9f7c6c3987ce4cfa40e48a1
parent549117946bc91887c5a459f53ea858ce80532955 (diff)
Fix files
-rw-r--r--README.md4
-rw-r--r--app.json2
-rwxr-xr-xscripts/release4
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index b493088..e9a24e4 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ class at the [University of Bologna](https://unibo.it).
You need:
- Node `v21.7.1`. We strongly suggest [`fnm`](https://github.com/Schniz/fnm) or
[`nvm`](https://github.com/nvm-sh/nvm) for Node versions management.
-- PnpM or NPM (better the first one).
+- Yarn.
After that you need to edit the `.env` file and set up:
@@ -21,7 +21,7 @@ After that you need to edit the `.env` file and set up:
And start the Expo app.
```
-pnpm run start
+yarn start
```
## Deployment
diff --git a/app.json b/app.json
index 4078559..57be943 100644
--- a/app.json
+++ b/app.json
@@ -2,7 +2,7 @@
"expo": {
"name": "cas4",
"slug": "cas4",
- "version": "0.5",
+ "version": "1.0.3",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
diff --git a/scripts/release b/scripts/release
index 2777fc1..9a2c3c4 100755
--- a/scripts/release
+++ b/scripts/release
@@ -5,7 +5,7 @@ fi
sed -i "4s/.*/ \"version\": \"$1\",/" package.json
sed -i "5s/.*/ \"version\": \"$1\",/" app.json
-pnpm i
-git add package.* pnpm-lock.yaml
+yarn
+git add package.* app.json
git commit -m "release: version $1"
git tag -a "v$1" -m "Version $1"