Revert "Merge branch 'main' into jck/tempo-fix-streaming"

This reverts commit 452b0acf09, reversing
changes made to 0d1ec94548.
This commit is contained in:
Jocelyn Collado-Kuri
2026-01-12 12:58:47 -08:00
parent 645e55cd68
commit 0809124b11
217 changed files with 8290 additions and 922 deletions
+1 -7
View File
@@ -11,13 +11,7 @@ failed_checks=()
for file in "$ARTIFACTS_DIR"/*.tgz; do
echo "🔍 Checking NPM package: $file"
# TODO: Fix the error with @grafana/i18n/eslint-resolution
if [[ "$file" == *"@grafana-i18n"* ]]; then
ATTW_FLAGS="--profile node16"
fi
# shellcheck disable=SC2086
if ! NODE_OPTIONS="-C @grafana-app/source" yarn attw "$file" --ignore-rules "false-cjs" $ATTW_FLAGS; then
if ! NODE_OPTIONS="-C @grafana-app/source" yarn attw "$file" --ignore-rules "false-cjs" --profile "node16"; then
echo "attw check failed for $file"
echo ""
failed_checks+=("$file - yarn attw")