Skip to content

Commit

Permalink
registry: pin bits-ui for svelte 4 in prep of v1 (#1682)
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte authored Feb 12, 2025
1 parent 1602f54 commit f3e2a17
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-documentation_change.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Report Docs Issue
description: Suggest an addition or modification to the documentation
labels: ["type: documentation"]
labels: [triage]
body:
- type: dropdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Feature request
description: Request a new feature
labels: ["type: feature"]
labels: [triage]
body:
- type: checkboxes
attributes:
Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/3-bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Bug report
description: Report an issue with shadcn-svelte
labels: [triage]
body:
- type: markdown
attributes:
Expand All @@ -24,7 +25,7 @@ body:
attributes:
label: Reproduction
description: |
Provide a minimal reproduction of the problem. Include a StackBlitz or link to a GitHub repository that we can easily run to recreate the issue. If a report is vague and does not have a reproduction, it will be closed without warning.
Provide a minimal reproduction of the problem. Include a StackBlitz or link to a GitHub repository that we can easily run to recreate the issue. If a report is vague and does not have a reproduction, it will be closed without warning.
To get started, you can use the following StackBlitz template:
https://shadcn-svelte.com/repro
Expand Down
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!--
### Before submitting the PR, please make sure you do the following
- If your PR isn't addressing a small fix (like a typo), it references an issue where it is discussed ahead of time and assigned to you. In many cases, features are absent for a reason.
- Prefix your PR title with `feat:`, `fix:`, `chore:`, or `docs:`.
- This message body should clearly illustrate what problems it solves.
- Format & lint the code with `pnpm format` and `pnpm lint`
-->
4 changes: 2 additions & 2 deletions .github/workflows/reproduire-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
days-before-stale: -1 # Issues and PR will never be flagged stale automatically.
stale-issue-label: "status: needs reproduction" # Label that flags an issue as stale.
only-labels: "status: needs reproduction" # Only process these issues
stale-issue-label: needs reproduction # Label that flags an issue as stale.
only-labels: needs reproduction # Only process these issues
days-before-issue-close: 7
ignore-updates: true
remove-stale-when-updated: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reproduire.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: Hebilicious/reproduire@4b686ae9cbb72dad60f001d278b6e3b2ce40a9ac # v0.0.9-mp
with:
label: "status: needs reproduction"
label: needs reproduction
5 changes: 4 additions & 1 deletion sites/docs/scripts/tmp.ts
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export const TMP_PINNED_DEPS = new Map<string, string>([["formsnap", "[email protected]"]]);
export const TMP_PINNED_DEPS = new Map<string, string>([
["formsnap", "[email protected]"],
["bits-ui", "[email protected]"],
]);

0 comments on commit f3e2a17

Please sign in to comment.