mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 13:01:13 +00:00
031266fbdf
- [ReactNative] Add root package.json name back | Tadeu Zagallo - [react-packager] Make sure projectRoots is converted to an array | Amjad Masad - [ReactNative] Init script that bootstraps new Xcode project | Alex Kotliarskyi - [ReactNative] New SampleApp | Alex Kotliarskyi - [ReactNative] Touchable invoke press on longPress when longPress handler missing | Eric Vicenti - [ReactNative] Commit missing RCTWebSocketDebugger.xcodeproj | Alex Kotliarskyi - [ReactNative] Add Custom Components folder | Christopher Chedeau - [react-packager] Hash cache file name information to avoid long names | Amjad Masad - [ReactNative] Put all iOS-related files in a subfolder | Alex Kotliarskyi - [react-packager] Fix OOM | Amjad Masad - [ReactNative] Bring Chrome debugger to OSS. Part 2 | Alex Kotliarskyi - [ReactNative] Add search to UIExplorer | Tadeu Zagallo - [ReactNative][RFC] Bring Chrome debugger to OSS. Part 1 | Alex Kotliarskyi - [ReactNative] Return the appropriate status code from XHR | Tadeu Zagallo - [ReactNative] Make JS stack traces in Xcode prettier | Alex Kotliarskyi - [ReactNative] Remove duplicate package.json with the same name | Christopher Chedeau - [ReactNative] Remove invariant from require('react-native') | Christopher Chedeau - [ReactNative] Remove ListViewDataSource from require('react-native') | Christopher Chedeau - [react-packager] Add assetRoots option | Amjad Masad - Convert UIExplorer to ListView | Christopher Chedeau - purge rni | Basil Hosmer - [ReactNative] s/render*View/render/ in <WebView> | Christopher Chedeau
45 lines
1.2 KiB
Bash
Executable File
45 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env ruby
|
|
|
|
def cp(src, dest, app_name)
|
|
if File.directory?(src)
|
|
Dir.mkdir(dest) unless Dir.exists?(dest)
|
|
else
|
|
content = File.read(src)
|
|
.gsub("SampleApp", app_name)
|
|
.gsub("Examples/#{app_name}/", "")
|
|
.gsub("../../Libraries/", "node_modules/react-native/Libraries/")
|
|
.gsub("../../ReactKit/", "node_modules/react-native/ReactKit/")
|
|
File.write(dest, content)
|
|
end
|
|
end
|
|
|
|
def main(dest, app_name)
|
|
source = File.expand_path("../../Examples/SampleApp", __FILE__)
|
|
files = Dir.chdir(source) { Dir["**/*"] }
|
|
.reject { |file| file["project.xcworkspace"] || file["xcuserdata"] }
|
|
.each { |file|
|
|
new_file = file.gsub("SampleApp", app_name)
|
|
cp File.join(source, file), File.join(dest, new_file), app_name
|
|
}
|
|
end
|
|
|
|
if ARGV.count == 0
|
|
puts "Usage: #{__FILE__} <ProjectNameInCamelCase>"
|
|
puts ""
|
|
puts "This script will bootstrap new React Native app in current folder"
|
|
else
|
|
app_name = ARGV.first
|
|
dest = Dir.pwd
|
|
puts "Setting up new React Native app in #{dest}"
|
|
puts ""
|
|
|
|
main(dest, app_name)
|
|
|
|
puts "Next steps:"
|
|
puts ""
|
|
puts " Open #{app_name}.xcproject in Xcode"
|
|
puts " Hit Run button"
|
|
puts ""
|
|
end
|
|
|