expo-app-blocker 0.1.44 → 0.1.45
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.
|
@@ -19,8 +19,13 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
- name: Determine version bump
|
|
21
21
|
id: version
|
|
22
|
+
# Never inline `${{ github.event.head_commit.message }}` into the
|
|
23
|
+
# script body — GitHub Actions substitutes it BEFORE the shell runs,
|
|
24
|
+
# so backticks / parens / `${...}` / `{vars}` get evaluated as
|
|
25
|
+
# commands. Always pass via env: so it lands as a quoted string.
|
|
26
|
+
env:
|
|
27
|
+
COMMIT_MSG: ${{ github.event.head_commit.message }}
|
|
22
28
|
run: |
|
|
23
|
-
COMMIT_MSG="${{ github.event.head_commit.message }}"
|
|
24
29
|
if echo "$COMMIT_MSG" | grep -qw "\[major\]"; then
|
|
25
30
|
echo "bump=major" >> $GITHUB_OUTPUT
|
|
26
31
|
elif echo "$COMMIT_MSG" | grep -qw "\[minor\]"; then
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-app-blocker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"description": "Expo module for cross-platform app blocking. Android: UsageStatsManager + Overlay. iOS: Screen Time API (FamilyControls + ManagedSettings + DeviceActivity).",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|