@siteed/expo-audio-stream 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/publish.sh +5 -1
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
set -e
|
|
3
3
|
|
|
4
|
+
# Change to script's directory
|
|
5
|
+
cd "$(dirname "$0")"
|
|
6
|
+
echo "Changed to script directory: $(pwd)"
|
|
7
|
+
|
|
4
8
|
echo "Starting publication process..."
|
|
5
9
|
|
|
6
10
|
# Get current version from package.json
|
|
@@ -63,7 +67,7 @@ yarn deploy
|
|
|
63
67
|
|
|
64
68
|
# Commit changes
|
|
65
69
|
echo "Committing changes..."
|
|
66
|
-
git add
|
|
70
|
+
git add "$(pwd)/../../" # add all changes in the root folder
|
|
67
71
|
git commit -m "feat: bump version to $version"
|
|
68
72
|
|
|
69
73
|
echo "Publication process completed successfully!"
|