From e62dd6ca5fc60dd60dddfb4d383d2f3f8e9deb70 Mon Sep 17 00:00:00 2001 From: Krzysztof Magiera Date: Wed, 27 Mar 2024 15:40:19 +0100 Subject: [PATCH] Update repo location links --- .github/workflows/lint-extension.yml | 2 +- DEVELOPMENT.md | 5 ++--- packages/vscode-extension/package.json | 2 +- packages/vscode-extension/scripts/build-sim-server.sh | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/lint-extension.yml b/.github/workflows/lint-extension.yml index d219a944f..f985748ad 100644 --- a/.github/workflows/lint-extension.yml +++ b/.github/workflows/lint-extension.yml @@ -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 diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index b554362e7..2e69b3b08 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -16,7 +16,7 @@ In order to run the extension in development mode, follow the steps below: ### 1. Clone the repository ```sh -git clone git@github.com:software-mansion-labs/react-native-ide.git +git clone git@github.com:software-mansion/react-native-ide.git ``` ### 2. Install NPM dependencies in `packages/vscode-extension` folder @@ -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): download-sim-server - Next, place the downloaded file under `packages/vscode-extension/dist`. Finally, run the following script inside `packages/vscode-extension` directory: diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index f81a74f01..5ddd14534 100644 --- a/packages/vscode-extension/package.json +++ b/packages/vscode-extension/package.json @@ -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": { diff --git a/packages/vscode-extension/scripts/build-sim-server.sh b/packages/vscode-extension/scripts/build-sim-server.sh index 620a0c716..45721f18a 100755 --- a/packages/vscode-extension/scripts/build-sim-server.sh +++ b/packages/vscode-extension/scripts/build-sim-server.sh @@ -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