Skip to content

Commit

Permalink
Merge pull request #109 from ieedan/tags-input-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ieedan authored Feb 19, 2025
2 parents d6bcbbb + 3571371 commit 9196f59
Show file tree
Hide file tree
Showing 13 changed files with 695 additions and 386 deletions.
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/eager-cases-itch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'shadcn-svelte-extras': patch
---

fix: Fix some issues with styles on mobile devices
31 changes: 21 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: release-please
name: build-n-release

on:
push:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

permissions:
contents: write
pull-requests: write
Expand All @@ -13,10 +15,6 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Required for pushing to the repository
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -50,12 +48,25 @@ jobs:
branch: build-manifest
commit-message: build `jsrepo-manifest.json`

release-please:
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Release Please
uses: googleapis/release-please-action@v4
id: release
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: pnpm install

- name: Create Release Pull Request or Publish to GitHub
uses: changesets/action@v1
with:
token: ${{secrets.GITHUB_TOKEN}}
commit: 'chore(release): version package'
title: 'chore(release): version package'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .release-please-manifest.json

This file was deleted.

227 changes: 0 additions & 227 deletions CHANGELOG.md

This file was deleted.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,3 @@ jsrepo add # list

jsrepo add ui/button # single
```

## Contributing

We use release please for tagging so please follow [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) to ensure you are generating releases with your changes.

The expectation is that all components should work with no additional configuration.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"build:registry": "jsrepo build"
},
"devDependencies": {
"@changesets/cli": "^2.28.0",
"@eslint/compat": "^1.2.6",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource/geist-mono": "^5.1.1",
Expand All @@ -32,7 +33,7 @@
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.15.0",
"isomorphic-dompurify": "^2.21.0",
"jsrepo": "^1.37.0",
"jsrepo": "^1.38.0",
"lucide-svelte": "^0.475.0",
"mode-watcher": "^0.5.1",
"nanoid": "^5.1.0",
Expand All @@ -42,7 +43,7 @@
"prettier-plugin-tailwindcss": "^0.6.11",
"runed": "^0.23.4",
"shiki": "^3.0.0",
"svelte": "^5.20.1",
"svelte": "^5.20.2",
"svelte-check": "^4.1.4",
"svelte-easy-crop": "^4.0.0",
"svelte-sonner": "^0.3.28",
Expand All @@ -57,7 +58,7 @@
"typescript-eslint": "^8.24.1",
"valibot": "1.0.0-rc.1",
"vaul-svelte": "1.0.0-next.3",
"vite": "^6.1.0",
"vite": "^6.1.1",
"yeezy-dates": "^1.0.1"
}
}
Loading

0 comments on commit 9196f59

Please sign in to comment.