Skip to content
Merged

Next #161

Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "accessible-astro-starter",
"description": "An Accessible Starter Theme for Astro including several accessibility features and tools to help you build faster.",
"version": "4.2.0",
"version": "4.2.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Patch version bump LGTM; please finalize release hygiene.

Looks good for 4.2.1. Before merge, ensure changelog entry, tag, and lockfile updates are included.

Run to verify basics:


🏁 Script executed:

#!/bin/bash
# Changelog has an entry for 4.2.1?
fd -HI '^CHANGELOG\.md$' -t f | xargs -r grep -n '4\.2\.1' || echo "Missing CHANGELOG entry for 4.2.1"

# Any lockfile present?
fd -HI '^(pnpm-lock\.yaml|package-lock\.json|yarn\.lock)$' -t f || echo "No lockfile found"

# Repo version echo (sanity)
jq -r .version package.json

Length of output: 5


🏁 Script executed:

#!/bin/bash
set -uo pipefail

echo "PWD: $(pwd)"
echo
echo "---- find CHANGELOG.md ----"
fd -HI '^CHANGELOG\.md$' -t f -x sh -c 'echo "FILE: {}"; sed -n "1,200p" {}' || echo "No CHANGELOG.md found"

echo
echo "---- search repo for '4.2.1' ----"
rg -n --hidden -uuu --glob '!**/node_modules/**' '4\.2\.1' || echo "NO_MATCHES"

echo
echo "---- check common changelog candidates ----"
for f in CHANGELOG.md CHANGES.md HISTORY.md RELEASE_NOTES.md docs/CHANGELOG.md; do
  if [ -f "$f" ]; then
    echo "FOUND $f"
    rg -n '4\.2\.1' "$f" || echo "NO_ENTRY_IN_$f"
  else
    echo "MISSING $f"
  fi
done

echo
echo "---- lockfiles ----"
for f in pnpm-lock.yaml package-lock.json yarn.lock npm-shrinkwrap.json; do
  if [ -f "$f" ]; then
    echo "FOUND $f"
    stat -c '%n %s %y' "$f" || true
    echo "HEAD (first 5 lines):"
    head -n 5 "$f" || true
  else
    echo "MISSING $f"
  fi
done

echo
echo "---- git tags matching 4.2.1 ----"
git tag -l 'v4.2.1' || true
git tag -l '4.2.1' || true

echo
echo "---- package.json version ----"
jq -r .version package.json || true

Length of output: 591


Release blocked — add CHANGELOG entry, commit lockfile, and create tag v4.2.1.

  • package.json version: 4.2.1.
  • No changelog found or 4.2.1 entry present (no CHANGELOG.md / CHANGES.md / HISTORY.md / RELEASE_NOTES.md).
  • No lockfile present (pnpm-lock.yaml, package-lock.json, yarn.lock, npm-shrinkwrap.json).
  • No git tag 'v4.2.1' or '4.2.1' exists.
🤖 Prompt for AI Agents
package.json lines 4-4: release is blocked because version 4.2.1 was bumped
without a changelog entry, a committed lockfile, or a git tag; fix by adding a
human-readable entry for 4.2.1 to the repository changelog (create CHANGELOG.md
if missing) describing the release changes, generate and commit the appropriate
package manager lockfile (pnpm-lock.yaml, package-lock.json, or yarn.lock) into
git, and create & push a git tag named v4.2.1 (and optionally v4.2.1 annotated)
pointing at the release commit.

"author": "Incluud",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -62,6 +62,6 @@
"dependencies": {
"@astrojs/sitemap": "^3.5.1",
"@tailwindcss/vite": "^4.1.13",
"accessible-astro-components": "^5.0.0"
"accessible-astro-components": "^5.0.1"
}
}
52 changes: 0 additions & 52 deletions src/assets/scss/base/_button.scss

This file was deleted.

1 change: 0 additions & 1 deletion src/assets/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
@use 'base/font';
@use 'base/list';
@use 'base/breakpoint';
@use 'base/button';
@use 'base/general';
@use 'base/kbd';
@use 'base/mixins';
Expand Down