-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into e2e/message-sent-interaction
- Loading branch information
Showing
856 changed files
with
16,468 additions
and
7,246 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
# HelpDot - Whenever an article is moved/renamed/deleted we should verify that | ||
# we have added a redirect link for it in redirects.csv. This ensures that we don't have broken links. | ||
|
||
declare -r RED='\033[0;31m' | ||
declare -r GREEN='\033[0;32m' | ||
declare -r NC='\033[0m' | ||
|
||
declare -r ARTICLES_DIRECTORY="docs/articles" | ||
declare -r REDIRECTS_FILE="docs/redirects.csv" | ||
|
||
hasRenamedOrDeletedArticle=false | ||
hasModifiedRedirect=false | ||
|
||
if git log origin/main..HEAD --name-status --pretty=format: $ARTICLES_DIRECTORY | grep -q -E "^(R|D)" | ||
then | ||
echo "Articles have been renamed/moved/deleted" | ||
hasRenamedOrDeletedArticle=true | ||
fi | ||
|
||
if git log origin/main..HEAD --name-status --pretty=format: $REDIRECTS_FILE | grep -q -E "^(M)" | ||
then | ||
echo "Redirects.csv has been modified" | ||
hasModifiedRedirect=true | ||
fi | ||
|
||
if [[ $hasRenamedOrDeletedArticle == true && $hasModifiedRedirect == false ]] | ||
then | ||
echo -e "${RED}Articles have been renamed or deleted. Please add a redirect link for the old article links in redirects.csv${NC}" | ||
exit 1 | ||
fi | ||
|
||
echo -e "${GREEN}Articles aren't moved or deleted, or a redirect has been added. Please verify that a redirect has been added for all the files moved or deleted${NC}" | ||
exit 0 |
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,35 @@ | ||
#!/usr/bin/env ruby | ||
|
||
# This file is a lightweight port of the `pod ipc spec` command. | ||
# It was built from scratch to imports some 3rd party functions before reading podspecs | ||
|
||
require 'cocoapods' | ||
require 'json' | ||
|
||
# Require 3rd party functions needed to parse podspecs. This code is copied from ios/Podfile | ||
def node_require(script) | ||
# Resolve script with node to allow for hoisting | ||
require Pod::Executable.execute_command('node', ['-p', | ||
"require.resolve( | ||
'#{script}', | ||
{paths: [process.argv[1]]}, | ||
)", __dir__]).strip | ||
end | ||
node_require('react-native/scripts/react_native_pods.rb') | ||
node_require('react-native-permissions/scripts/setup.rb') | ||
|
||
# Configure pod in silent mode | ||
Pod::Config.instance.silent = true | ||
|
||
# Process command-line arguments | ||
podspec_files = ARGV | ||
|
||
# Validate each podspec file | ||
podspec_files.each do |podspec_file| | ||
begin | ||
spec = Pod::Specification.from_file(podspec_file) | ||
puts(spec.to_pretty_json) | ||
rescue => e | ||
STDERR.puts "Failed to validate #{podspec_file}: #{e.message}" | ||
end | ||
end |
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
Oops, something went wrong.