Skip to content

Commit bf58d01

Browse files
committed
Update package name references
1 parent 9ceda6a commit bf58d01

47 files changed

Lines changed: 83 additions & 82 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ React Native CodePush is a native module that enables over-the-air updates for R
5555
- When debugging a CI failure, don't trust the first plausible-looking theory from log noise — reproduce the exact failing command locally on matching hardware/toolchain before writing up a root cause. This is faster than iterating against multi-hour CI runs and catches wrong hypotheses early.
5656
- Before running `npm run test:setup:ios`, shut down all booted simulators (`xcrun simctl shutdown all`) — the test framework's simulator picker hangs silently (no error) if simulators are already booted outside it.
5757
- `npm run test:setup:ios` provisions a full test app outside the repo (under a system temp/`test-run` dir), not inside `test/` — expect to search for it rather than finding it checked into the repo tree.
58-
- The provisioned test app's `node_modules/@code-push-next/react-native-code-push` is a real copy, not a symlink — editing `ios/` (or `android/`) native source in the repo has zero effect on `test:fast:ios` runs until you re-copy those files into that `node_modules` path (or rerun `test:setup:ios`).
58+
- The provisioned test app's `node_modules/@bitrise/code-push-sdk` is a real copy, not a symlink — editing `ios/` (or `android/`) native source in the repo has zero effect on `test:fast:ios` runs until you re-copy those files into that `node_modules` path (or rerun `test:setup:ios`).
5959

6060
### Build Integration
6161
- **Android Gradle Plugin**: Automatically generates bundle hashes and processes assets

CodePush.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.author = package['author']
1010
s.license = package['license']
1111
s.homepage = package['homepage']
12-
s.source = { :git => 'https://github.com/CodePushNext/react-native-code-push.git', :tag => "v#{s.version}"}
12+
s.source = { :git => 'https://github.com/bitrise-io/react-native-code-push.git', :tag => "v#{s.version}"}
1313
s.ios.deployment_target = '15.5'
1414
s.tvos.deployment_target = '15.5'
1515
s.preserve_paths = '*.js'

Examples/CodePushDemo/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ dependencies {
118118
}
119119
}
120120

121-
apply from: "../../node_modules/@code-push-next/react-native-code-push/android/codepush.gradle"
121+
apply from: "../../node_modules/@bitrise/code-push-sdk/android/codepush.gradle"

Examples/CodePushDemo/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2422,7 +2422,7 @@ PODS:
24222422

24232423
DEPENDENCIES:
24242424
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
2425-
- "CodePush (from `../node_modules/@code-push-next/react-native-code-push`)"
2425+
- "CodePush (from `../node_modules/@bitrise/code-push-sdk`)"
24262426
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
24272427
- fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
24282428
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
@@ -2510,7 +2510,7 @@ EXTERNAL SOURCES:
25102510
boost:
25112511
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
25122512
CodePush:
2513-
:path: "../node_modules/@code-push-next/react-native-code-push"
2513+
:path: "../node_modules/@bitrise/code-push-sdk"
25142514
DoubleConversion:
25152515
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
25162516
fast_float:

Examples/CodePushDemo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"react-native": "0.82.1",
1515
"@react-native/new-app-screen": "0.82.1",
1616
"react-native-safe-area-context": "^5.5.2",
17-
"@code-push-next/react-native-code-push": "file:../.."
17+
"@bitrise/code-push-sdk": "file:../.."
1818
},
1919
"devDependencies": {
2020
"@babel/core": "^7.25.2",
@@ -39,4 +39,4 @@
3939
"engines": {
4040
"node": ">=20"
4141
}
42-
}
42+
}

Examples/CodePushDemo/yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@
10191019
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
10201020
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
10211021

1022-
"@code-push-next/react-native-code-push@file:../..":
1022+
"@bitrise/code-push-sdk@file:../..":
10231023
version "10.2.0"
10241024
dependencies:
10251025
code-push "4.2.3"

Examples/CodePushDemoAppCpp/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
View,
1212
} from 'react-native';
1313

14-
import CodePush from "@code-push-next/react-native-code-push";
14+
import CodePush from "@bitrise/code-push-sdk";
1515

1616
class App extends Component<{}> {
1717
constructor() {

Examples/CodePushDemoAppCpp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"react": "^17.0.2",
1313
"react-native": "^0.68.5",
14-
"@code-push-next/react-native-code-push": "^8.1.0",
14+
"@bitrise/code-push-sdk": "file:../..",
1515
"react-native-windows": "^1.0.0"
1616
},
1717
"resolutions": {

Examples/CodePushExpoDemoApp/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { StatusBar } from 'expo-status-bar';
22
import React, { useState, useEffect } from 'react';
33
import { StyleSheet, Text, View } from 'react-native';
4-
import codePush from '@code-push-next/react-native-code-push';
4+
import codePush from '@bitrise/code-push-sdk';
55

66
function App() {
77
// Log current package information on app start

Examples/CodePushExpoDemoApp/app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"plugins": [
3131
[
32-
"@code-push-next/react-native-code-push/expo",
32+
"@bitrise/code-push-sdk/expo",
3333
{
3434
"ios": {
3535
"CodePushDeploymentKey": "Tf2qo0NCNKloj8Ym2Z2Bk_VQ_zLDNzk2MGNjNDktNWFiZS00NTAwLWFlNDEtZjMzNzllNGU0MjE0",
@@ -51,4 +51,4 @@
5151
]
5252
]
5353
}
54-
}
54+
}

0 commit comments

Comments
 (0)