Skip to content

Commit 551c23d

Browse files
committed
merging main
2 parents 7cc463b + 7647683 commit 551c23d

File tree

611 files changed

+42846
-10454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

611 files changed

+42846
-10454
lines changed

.changeset/config.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3+
"changelog": [
4+
"@svitejs/changesets-changelog-github-compact",
5+
{ "repo": "TanStack/create-tsrouter-app" }
6+
],
7+
"commit": false,
8+
"access": "public",
9+
"baseBranch": "main",
10+
"updateInternalDependencies": "patch",
11+
"fixed": [],
12+
"linked": [],
13+
"ignore": [],
14+
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
15+
"onlyUpdatePeerDependentsWhenOutOfRange": true
16+
}
17+
}

.changeset/dark-impalas-dress.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
'create-start-app': minor
3+
'create-tanstack': minor
4+
'create-tanstack-app': minor
5+
'create-tsrouter-app': minor
6+
'@tanstack/create-start': minor
7+
'@tanstack/cta-framework-react-cra': minor
8+
'@tanstack/cta-framework-solid': minor
9+
'@tanstack/cta-cli': minor
10+
'@tanstack/cta-engine': minor
11+
'@tanstack/cta-ui': minor
12+
'@tanstack/cta-ui-base': minor
13+
---
14+
15+
Smakll content fixes

.claude/settings.local.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(pnpm ls:*)",
5+
"WebFetch(domain:github.com)",
6+
"Bash(node:*)",
7+
"Bash(source:*)",
8+
"Bash(nvm use:*)",
9+
"Bash(find:*)",
10+
"Bash(grep:*)",
11+
"Bash(pnpm test:*)",
12+
"Bash(cat:*)",
13+
"Bash(xargs:*)",
14+
"WebSearch",
15+
"WebFetch(domain:registry.npmjs.org)",
16+
"WebFetch(domain:www.content-collections.dev)",
17+
"WebFetch(domain:raw.githubusercontent.com)",
18+
"WebFetch(domain:api.github.com)",
19+
"WebFetch(domain:tanstack.com)",
20+
"WebFetch(domain:www.npmjs.com)"
21+
],
22+
"deny": []
23+
}
24+
}

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: tannerlinsley
1+
github: [tannerlinsley]

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ blank_issues_enabled: false
22
contact_links:
33
- name: 💬 Community Chat
44
url: https://discord.gg/mQd7egN
5-
about: A dedicated discord server hosted by Tanner Linsley
6-
- name: 💬 Tanstack Twitter
7-
url: https://twitter.com/tan_stack
5+
about: A dedicated discord server hosted by TanStack
6+
- name: 🦋 TanStack Bluesky
7+
url: https://bsky.app/profile/tanstack.com
88
about: Stay up to date with new releases of our libraries

.github/workflows/ci.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/pr.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: PR
2+
3+
on:
4+
pull_request:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
8+
cancel-in-progress: true
9+
10+
env:
11+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
test:
18+
name: Test
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v6.0.1
23+
with:
24+
fetch-depth: 0
25+
- name: Setup Tools
26+
uses: tanstack/config/.github/setup@main
27+
- name: Build
28+
run: pnpm build
29+
- name: Test
30+
run: pnpm test
31+
preview:
32+
provenance:
33+
name: Provenance
34+
runs-on: ubuntu-latest
35+
steps:
36+
- name: Checkout
37+
uses: actions/checkout@v6.0.1
38+
with:
39+
fetch-depth: 0
40+
- name: Check Provenance
41+
uses: danielroe/provenance-action@v0.1.1
42+
with:
43+
fail-on-downgrade: true

.github/workflows/release.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches: [main, alpha, beta, rc]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
9+
cancel-in-progress: true
10+
11+
env:
12+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
13+
14+
permissions:
15+
contents: write
16+
id-token: write
17+
pull-requests: write
18+
19+
jobs:
20+
release:
21+
name: Release
22+
if: github.repository_owner == 'TanStack'
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v6.0.1
27+
with:
28+
fetch-depth: 0
29+
- name: Setup Tools
30+
uses: tanstack/config/.github/setup@main
31+
- name: Build
32+
run: pnpm build
33+
- name: Test
34+
run: pnpm test
35+
- name: Run Changesets (version or publish)
36+
uses: changesets/action@v1.5.3
37+
with:
38+
version: pnpm run changeset:version
39+
publish: pnpm run changeset:publish
40+
commit: "ci: Version Packages"
41+
title: "ci: Version Packages"
42+
env:
43+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44+
- name: Comment on PRs about release
45+
if: steps.changesets.outputs.published == 'true'
46+
uses: tanstack/config/.github/comment-on-release@main
47+
with:
48+
published-packages: ${{ steps.changesets.outputs.publishedPackages }}

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
provenance=true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.17.0
1+
24.8.0

0 commit comments

Comments
 (0)