Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
branches:
- main
pull_request:
branches:
- main
merge_group:
types:
- checks_requested
Expand Down
8 changes: 4 additions & 4 deletions example/app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"expo": {
"name": "example",
"slug": "example",
"name": "React Native Alert Queue",
"slug": "rn.alert.queue.example",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
Expand All @@ -14,14 +14,14 @@
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "alertqueue.example"
"bundleIdentifier": "rn.alert.queue.example"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "alertqueue.example"
"package": "rn.alert.queue.example"
},
"web": {
"favicon": "./assets/favicon.png"
Expand Down
10 changes: 5 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
"dependencies": {
"react-native-alert-queue": "workspace:*",
"@expo/metro-runtime": "~6.1.2",
"expo": "~54.0.32",
"expo": "~54.0.33",
"expo-status-bar": "~3.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-web": "^0.21.0",
"react-native-safe-area-context": "~5.6.2",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/core": "^7.29.0",
"@react-native/metro-config": "0.81.5",
"react-native-builder-bob": "^0.40.17"
"react-native-builder-bob": "^0.40.18"
},
"private": true
}
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"format": "biome format --write .",
"clean": "del-cli lib",
"prepare": "bob build",
"release": "release-it"
"release": "release-it",
"update-deps": "pnpm dlx npm-check-updates -i --workspaces --format group,repo"
},
"keywords": [
"react-native",
Expand Down Expand Up @@ -68,20 +69,20 @@
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@biomejs/biome": "^2.0.3",
"@commitlint/config-conventional": "^20.3.1",
"@evilmartians/lefthook": "^1.13.6",
"@release-it/conventional-changelog": "^10.0.4",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.12",
"commitlint": "^20.3.1",
"del-cli": "^5.1.0",
"jest": "^30.2.0",
"@biomejs/biome": "^2.4.4",
"@commitlint/config-conventional": "^20.4.2",
"@evilmartians/lefthook": "^2.1.1",
"@release-it/conventional-changelog": "^10.0.5",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.17",
"commitlint": "^20.4.2",
"del-cli": "^7.0.0",
"jest": "^29.7.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-builder-bob": "^0.40.17",
"react-native-builder-bob": "^0.40.18",
"react-native-reanimated": "~4.1.1",
"react-native-svg": "15.8.0",
"react-native-svg": "15.12.1",
"release-it": "^19.2.4",
"typescript": "^5.9.3"
},
Expand Down
Loading