From 45205292234b7332f42d20886bdc1205142a0851 Mon Sep 17 00:00:00 2001 From: Klink <85062+dogmar@users.noreply.github.com> Date: Mon, 1 Jun 2026 13:43:28 -0700 Subject: [PATCH 1/3] Update urls in package.json --- package/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/package.json b/package/package.json index c4b41a8..d82d56d 100644 --- a/package/package.json +++ b/package/package.json @@ -1,6 +1,6 @@ { "name": "@klinking/squircle", - "version": "0.1.0", + "version": "0.0.0", "description": "Tailwind CSS v4 squircle (superellipse) corner utilities with visual radius correction", "keywords": [ "border-radius", @@ -10,11 +10,11 @@ "tailwind-plugin", "tailwindcss" ], - "homepage": "https://dogmar.github.io/squircle", + "homepage": "https://squircle.klink.ing", "license": "MIT", "repository": { "type": "git", - "url": "git+https://github.com/dogmar/squircle.git" + "url": "git+https://github.com/klink-ing/squircle.git" }, "files": [ "dist" From 9cef97d131340fdb5be6f7088e2f74f6791b5352 Mon Sep 17 00:00:00 2001 From: Klink <85062+dogmar@users.noreply.github.com> Date: Mon, 1 Jun 2026 13:53:09 -0700 Subject: [PATCH 2/3] more helpful job name for sync-readme --- .github/workflows/sync-readme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-readme.yml b/.github/workflows/sync-readme.yml index ee197bc..49f1d73 100644 --- a/.github/workflows/sync-readme.yml +++ b/.github/workflows/sync-readme.yml @@ -16,7 +16,7 @@ permissions: contents: read jobs: - sync: + sync-readme: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 From 64f9bb9332d3f1ca764fa0d94857e344c407fa1f Mon Sep 17 00:00:00 2001 From: Klink <85062+dogmar@users.noreply.github.com> Date: Mon, 1 Jun 2026 13:56:12 -0700 Subject: [PATCH 3/3] ci: always run sync-readme on PRs Drop the paths filter so the workflow runs on every PR to main. The previous filter excluded changes like package.json edits, which let README drift slip through unchecked. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/sync-readme.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/sync-readme.yml b/.github/workflows/sync-readme.yml index 49f1d73..43bbef1 100644 --- a/.github/workflows/sync-readme.yml +++ b/.github/workflows/sync-readme.yml @@ -3,13 +3,6 @@ name: Sync README code blocks on: pull_request: branches: [main] - paths: - - package/src/** - - package/scripts/generate-squircle-css.ts - - package/vite.config.ts - - scripts/sync-readme.sh - - vite.config.ts - - README.md workflow_dispatch: permissions: