mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
Scaffold empty apps to consume the fixture lib. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31164). * #31167 * #31166 * #31165 * __->__ #31164 * #31148 * #31168
14 lines
374 B
Bash
Executable File
14 lines
374 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
set -eo pipefail
|
|
|
|
HERE=$(pwd)
|
|
|
|
cd lib && yarn --silent link
|
|
cd $HERE/app-18 && yarn --silent link runtime-compat-lib
|
|
cd $HERE/app-19 && yarn --silent link runtime-compat-lib
|