Skip to content

Commit

Permalink
Update repo location links
Browse files Browse the repository at this point in the history
  • Loading branch information
kmagiera committed Mar 27, 2024
1 parent 11d8b39 commit e62dd6c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
check:
if: github.repository == 'software-mansion-labs/react-native-ide'
if: github.repository == 'software-mansion/react-native-ide'
runs-on: ubuntu-latest
env:
WORKING_DIRECTORY: packages/vscode-extension
Expand Down
5 changes: 2 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ In order to run the extension in development mode, follow the steps below:
### 1. Clone the repository

```sh
git clone [email protected]:software-mansion-labs/react-native-ide.git
git clone [email protected]:software-mansion/react-native-ide.git
```

### 2. Install NPM dependencies in `packages/vscode-extension` folder
Expand All @@ -30,11 +30,10 @@ npm install
### 3. Prepare simulator server build

Simulator server repository is not open sourced but we have a pre-build binaries published on the GitHub releases page.
First, you need to navigate to the [releases page on GitHub](https://github.com/software-mansion-labs/react-native-ide/releases), open the recent release, and download the sim-server file from "Assets" section (the filename contains a git hash for build consistency):
First, you need to navigate to the [releases page on GitHub](https://github.com/software-mansion/react-native-ide/releases), open the recent release, and download the sim-server file from "Assets" section (the filename contains a git hash for build consistency):

<img width="825" alt="download-sim-server" src="https://github.com/software-mansion-labs/react-native-ide/assets/726445/1b85280f-af22-49f2-9831-cf9d6321c9fc">


Next, place the downloaded file under `packages/vscode-extension/dist`.

Finally, run the following script inside `packages/vscode-extension` directory:
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/software-mansion-labs/react-native-sztudio"
"url": "https://github.com/software-mansion/react-native-ide"
},
"main": "./dist/extension.js",
"contributes": {
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-extension/scripts/build-sim-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ product_path="$output_dir/sim-server-Release-${submodule_hash}"
if [[ ! -f "$product_path" ]]; then
echo "Simulator server binary not found: $product_path"
echo ""
echo "Make sure to follow development setup instructions: https://github.com/software-mansion-labs/react-native-ide"
echo "You can download the binary from the releases page on GitHub: https://github.com/software-mansion-labs/react-native-ide/releases"
echo "Make sure to follow development setup instructions: https://github.com/software-mansion/react-native-ide"
echo "You can download the binary from the releases page on GitHub: https://github.com/software-mansion/react-native-ide/releases"
exit 1
fi

Expand Down

0 comments on commit e62dd6c

Please sign in to comment.