Forms migration: Input namespace (#23286)
* Update exports * Add LegacyForms namespace * Update ci grep
This commit is contained in:
@@ -13,7 +13,7 @@ DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"
|
||||
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/**/* | wc -l)"
|
||||
STORIES_COUNT="$(find ./packages/grafana-ui/src/components -name "*.story.tsx" | wc -l)"
|
||||
MDX_COUNT="$(find ./packages/grafana-ui/src/components -name "*.mdx" | wc -l)"
|
||||
|
||||
LEGACY_FORMS="$(grep -r -oP 'LegacyForms;' public/app/**/* | wc -l)"
|
||||
|
||||
|
||||
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then
|
||||
@@ -36,6 +36,7 @@ echo -e "Directives: $DIRECTIVES"
|
||||
echo -e "Controllers: $CONTROLLERS"
|
||||
echo -e "Stories: $STORIES_COUNT"
|
||||
echo -e "Documented stories: $MDX_COUNT"
|
||||
echo -e "Legacy forms: $LEGACY_FORMS"
|
||||
|
||||
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
||||
./scripts/ci-metrics-publisher.sh \
|
||||
@@ -43,5 +44,6 @@ if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
||||
grafana.ci-code.directives="$DIRECTIVES" \
|
||||
grafana.ci-code.controllers="$CONTROLLERS" \
|
||||
grafana.ci-code.grafana-ui.stories="$STORIES_COUNT" \
|
||||
grafana.ci-code.grafana-ui.mdx="$MDX_COUNT"
|
||||
grafana.ci-code.grafana-ui.mdx="$MDX_COUNT" \
|
||||
grafana.ci-code.legacyForms="$LEGACY_FORMS"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user