Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1224,6 +1224,7 @@ Current Angular version: [![npm version](https://badge.fury.io/js/%40angular%2Fc
* [ng-motion](https://github.com/ScriptType/ng-motion) - Angular animation library built on [motion-dom](https://github.com/motiondivision/motion).
* [ngx-digit-flow](https://github.com/ayangabryl/ngx-digit-flow) - Individual digit animations for Angular. Each digit has a vertical reel (0-9) that scrolls to the new value when the number changes - slot-machine / odometer style.
* [angular-movement](https://github.com/Andersseen/angular-movement) - An Angular motion ecosystem combining a reusable animation‑directive library with a demo and documentation site in one repository.
* [underlying](https://github.com/underlyingjs/underlying) - Declarative, framework‑agnostic, TypeScript‑native, physics‑first animation library for the web.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify repository exists and check for Angular-related content
curl -s -o /dev/null -w "%{http_code}" https://github.com/underlyingjs/underlying
echo ""
# Search for Angular mentions in the repo if accessible
curl -s https://raw.githubusercontent.com/underlyingjs/underlying/main/README.md | rg -i 'angular' || echo "No Angular mentions found in main README"

Repository: PatrickJS/awesome-angular

Length of output: 246


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo='underlyingjs/underlying'
base="https://raw.githubusercontent.com/${repo}/main"

echo "== README Angular mentions =="
curl -fsSL "${base}/README.md" | rg -n -i 'angular|`@underlying/angular`' || true

echo
echo "== package / workspace files mentioning Angular =="
for path in \
  package.json \
  pnpm-workspace.yaml \
  turbo.json \
  nx.json \
  packages/angular/package.json \
  libs/angular/package.json \
  angular/package.json
do
  url="${base}/${path}"
  if curl -fsSL "$url" >/tmp/underlying_check 2>/dev/null; then
    echo "-- ${path}"
    rg -n -i 'angular|`@underlying/angular`' /tmp/underlying_check || true
  fi
done

echo
echo "== README lines around Angular row =="
curl -fsSL "${base}/README.md" | nl -ba | sed -n '1,220p' | rg -n 'angular|underlying' -A2 -B2 || true

Repository: PatrickJS/awesome-angular

Length of output: 491


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo='underlyingjs/underlying'
base="https://raw.githubusercontent.com/${repo}/main"

for path in package.json pnpm-workspace.yaml README.md packages/angular/package.json libs/angular/package.json angular/package.json; do
  url="${base}/${path}"
  echo "== ${path} =="
  if content=$(curl -fsSL "$url" 2>/dev/null); then
    printf '%s\n' "$content" | sed -n '1,220p'
  else
    echo "unavailable"
  fi
  echo
done

Repository: PatrickJS/awesome-angular

Length of output: 8310


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo='underlyingjs/underlying'
api="https://api.github.com/repos/${repo}/git/trees/main?recursive=1"

curl -fsSL "$api" | python3 - <<'PY'
import json, sys
data = json.load(sys.stdin)
for item in data.get("tree", []):
    path = item.get("path", "")
    if "angular" in path.lower() or path in ("package.json", "pnpm-workspace.yaml", "README.md"):
        print(path)
PY

Repository: PatrickJS/awesome-angular

Length of output: 933


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo='underlyingjs/underlying'
api="https://api.github.com/repos/${repo}/git/trees/main?recursive=1"

tmp="$(mktemp)"
curl -fsSL "$api" -o "$tmp"

python3 - <<'PY' < "$tmp"
import json, sys
data = json.load(sys.stdin)
paths = [item.get("path", "") for item in data.get("tree", [])]
for p in paths:
    if "angular" in p.lower() or p in ("README.md", "package.json", "pnpm-workspace.yaml"):
        print(p)
PY

Repository: PatrickJS/awesome-angular

Length of output: 302


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo='underlyingjs/underlying'
api="https://api.github.com/repos/${repo}/git/trees/main?recursive=1"

tmp="$(mktemp)"
curl -fsSL "$api" -o "$tmp"

python3 - "$tmp" <<'PY'
import json, sys
data = json.load(open(sys.argv[1]))
paths = [item["path"] for item in data.get("tree", []) if "angular" in item["path"].lower()]
for p in paths:
    print(p)
PY

Repository: PatrickJS/awesome-angular

Length of output: 163


Drop or relabel this entry (README.md:1227)
underlying is framework-agnostic, and the only Angular reference is a planned @underlying/angular package; there’s no Angular package or usage docs in the repo. It doesn’t belong in an Angular-specific list yet.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` at line 1227, Remove or relabel the underlying entry in the README
Angular-specific list, since the repository does not contain an Angular package
or Angular usage docs for it. Update the README entry near the existing
underlying link to either omit it from the Angular list or clearly mark it as
framework-agnostic/planned rather than Angular-specific, using the underlying
package name as the reference point.


### Calendars

Expand Down