-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First phase of react-native-ide to radon IDE renaming - renaming non-…
…visible bits first (#538) This is the first step for our renaming process. It renames most react-native-ide occurences that doesn't affect users or are not visible. 1) We're republishing react-native-ide under radon-ide package name (next step would be to fallback from react-native-ide to radon-ide) 2) We are adding new configuration scheme "radon-ide" but for now keeping it as a copy. We want to accept new and old schemes going forwards and deprecate the old one after renaming is complete. 3) We're keeping all user-facing name as-is for the time being. Will want to update docs first for the transition to complete – those changes will come as a follow up. 4) Code changes are mostly made to be backwards compatible and when possible we are supporting old names (i.e. for NPM package or for the config scheme) Final tricky part is caches file location. Since it contains android emulator configs that in turn contain absolute path names we may need to consider dropping caches entirely with the update (haven't decided on this one yet). ## Test plan 1. Full test over expo-router app. It also uses custom config along with preview functionality
- Loading branch information
Showing
21 changed files
with
165 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react'; | ||
// This function is a placeholder for the preview function. | ||
// It is provided as empty method so that packages that use | ||
// preview functionality can build and execute outside of the | ||
// context of VSCode's React Native extension. | ||
// When run inside VSCode, the extension will replace the | ||
// implementation of this method in order to support the preview | ||
// feature properly. | ||
export declare function preview(componentInstance: ReturnType<typeof React.createElement>): void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export function preview(componentInstance) { | ||
// This function is a placeholder for the preview function. | ||
// It is provided as empty method so that packages that use | ||
// preview functionality can build and execute outside of the | ||
// context of VSCode's React Native extension. | ||
// When run inside VSCode, the extension will replace the | ||
// implementation of this method in order to support the preview | ||
// feature properly. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "radon-ide", | ||
"version": "0.0.1", | ||
"description": "Helper functions for Radon IDE project", | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"author": "Software Mansion <[email protected]>", | ||
"license": "MIT" | ||
} |
4 changes: 2 additions & 2 deletions
4
packages/vscode-extension/lib/android/buildProgressEvaluation.initscript.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// This is a functionality that is used by BuildAndroidProgressProcessor | ||
// This is a functionality that is used by BuildAndroidProgressProcessor | ||
gradle.taskGraph.whenReady { graph -> | ||
println "React-Native-IDE:TaskGraphSize: ${graph.allTasks.size()}" | ||
println "RadonIDE:TaskGraphSize: ${graph.allTasks.size()}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.