Skip to content

Commit 16fe5c2

Browse files
committed
ci: fix licences generation step in CI scripts
1 parent 583e1a0 commit 16fe5c2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Update license list
3838
run: |
3939
bun i npm-license-crawler -g
40-
bun licenses
40+
bun run licences
4141
4242
- name: Set up JDK 17
4343
uses: actions/setup-java@v4.2.2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Update license list
7575
run: |
7676
bun i npm-license-crawler -g
77-
bun licenses
77+
bun run licences
7878
7979
- name: Set up JDK 17
8080
uses: actions/setup-java@v4.2.2

bun.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"react-native-safe-area-context": "5.3.0",
7777
"react-native-screens": "^4.9.2",
7878
"react-native-select-dropdown": "^4.0.1",
79-
"react-native-svg": "15.8.0",
79+
"react-native-svg": "15.11.2",
8080
"react-native-unistyles": "^2.31.0",
8181
"react-native-view-shot": "~4.0.3",
8282
"react-native-web": "^0.19.13",
@@ -2261,7 +2261,7 @@
22612261

22622262
"react-native-select-dropdown": ["react-native-select-dropdown@4.0.1", "", {}, "sha512-t4se17kALFcPb9wMbxig5dS1BE3pWRC6HPuFlM0J2Y6yhB1GsLqboy6an6R9rML8pRuGIJIxL29cbwEvPQwKxQ=="],
22632263

2264-
"react-native-svg": ["react-native-svg@15.8.0", "", { "dependencies": { "css-select": "^5.1.0", "css-tree": "^1.1.3", "warn-once": "0.1.1" }, "peerDependencies": { "react": "*", "react-native": "*" } }, "sha512-KHJzKpgOjwj1qeZzsBjxNdoIgv2zNCO9fVcoq2TEhTRsVV5DGTZ9JzUZwybd7q4giT/H3RdtqC3u44dWdO0Ffw=="],
2264+
"react-native-svg": ["react-native-svg@15.11.2", "", { "dependencies": { "css-select": "^5.1.0", "css-tree": "^1.1.3", "warn-once": "0.1.1" }, "peerDependencies": { "react": "*", "react-native": "*" } }, "sha512-+YfF72IbWQUKzCIydlijV1fLuBsQNGMT6Da2kFlo1sh+LE3BIm/2Q7AR1zAAR6L0BFLi1WaQPLfFUC9bNZpOmw=="],
22652265

22662266
"react-native-unistyles": ["react-native-unistyles@2.31.0", "", { "peerDependencies": { "@react-native/normalize-colors": "*", "react": "*", "react-native": "*", "react-native-macos": "*", "react-native-web": "*", "react-native-windows": "*" }, "optionalPeers": ["react-native-macos", "react-native-web", "react-native-windows"] }, "sha512-ZFmT4xpFWZ5ivb7IM7EOPWkK1Qjqjfa1MvPl1kXAR/8GjVEUW8QmRRPnYI9JlLk7DGTAx79OdYXS6Ah2ogrAbQ=="],
22672267

ios/ci_scripts/ci_post_clone.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ echo "===== Running bun install ====="
2323
cd ../..
2424
bun i npm-license-crawler -g
2525
bun install --frozen-lockfile --ignore-scripts -p
26-
bun licenses
26+
bun run licences
2727

2828
echo "===== Running pod install ====="
2929
cd ios

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"react-native-safe-area-context": "5.3.0",
9999
"react-native-screens": "^4.9.2",
100100
"react-native-select-dropdown": "^4.0.1",
101-
"react-native-svg": "15.8.0",
101+
"react-native-svg": "15.11.2",
102102
"react-native-unistyles": "^2.31.0",
103103
"react-native-view-shot": "~4.0.3",
104104
"react-native-web": "^0.19.13",

0 commit comments

Comments
 (0)