@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/publish.sh +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siteed/expo-audio-stream",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "stream audio crossplatform",
5
5
  "license": "MIT",
6
6
  "main": "build/index.js",
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!"