Skip to content

Commit 0c844f9

Browse files
committed
chore(internal): temporarily disable updated for 3p clients
1 parent 9fe69e0 commit 0c844f9

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

scripts/build-all

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ set -exuo pipefail
55

66
bash ./scripts/build
77

8-
for dir in packages/*; do
9-
if [ -d "$dir" ]; then
10-
(cd "$dir" && yarn install && yarn build)
11-
fi
12-
done
8+
# temporarily disabled
9+
# for dir in packages/*; do
10+
# if [ -d "$dir" ]; then
11+
# (cd "$dir" && yarn install && yarn build)
12+
# fi
13+
# done

scripts/lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
cd "$(dirname "$0")/.."
66

77
echo "==> Running eslint"
8-
ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --ext ts,js .
8+
ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --ext ts,js . --ignore-pattern="packages/"
99

1010
echo "==> Building"
1111
./scripts/build # also checks types

0 commit comments

Comments
 (0)