Skip to content

Commit 086af99

Browse files
authoredJul 23, 2024··
ci: enable renovate automerge, pin actions (#2012)
* ci: enable renovate automerge, pin actions * Remove test:format from Nx * Use config@main * Simplify publish.js * Remove prettier from Nx
1 parent eece47d commit 086af99

File tree

14 files changed

+335
-228
lines changed

14 files changed

+335
-228
lines changed
 

‎.github/renovate.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@
55
"schedule:weekly",
66
":approveMajorUpdates",
77
":disablePeerDependencies",
8+
":semanticCommits",
89
":semanticCommitTypeAll(chore)"
910
],
1011
"ignorePresets": [":ignoreModulesAndTests"],
1112
"labels": ["dependencies"],
1213
"rangeStrategy": "bump",
1314
"postUpdateOptions": ["pnpmDedupe"],
14-
"semanticCommits": "enabled",
1515
"packageRules": [
1616
{
1717
"groupName": "all non-major dependencies",
1818
"groupSlug": "all-minor-patch",
1919
"matchCurrentVersion": ">=1.0.0",
20-
"matchUpdateTypes": ["minor", "patch"]
20+
"matchUpdateTypes": ["minor", "patch"],
21+
"automerge": true
2122
}
2223
],
2324
"ignoreDeps": [

‎.github/workflows/autofix.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v4.1.7
2222
- name: Setup Tools
2323
uses: tanstack/config/.github/setup@main
2424
- name: Fix formatting
2525
run: pnpm prettier:write
2626
- name: Apply fixes
27-
uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
27+
uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
2828
with:
2929
commit-message: 'ci: apply automated fixes'

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ permissions:
2323
jobs:
2424
test-and-publish:
2525
name: Test & Publish
26-
if: github.repository == 'TanStack/router'
26+
if: github.repository_owner == 'TanStack'
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v4.1.7
3131
with:
3232
fetch-depth: 0
3333
- name: Start Nx Agents

‎.github/workflows/pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v4.1.7
2323
with:
2424
fetch-depth: 0
2525
- name: Start Nx Agents
2626
run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml"
2727
- name: Setup Tools
2828
uses: tanstack/config/.github/setup@main
2929
- name: Get base and head commits for `nx affected`
30-
uses: nrwl/nx-set-shas@v4
30+
uses: nrwl/nx-set-shas@v4.0.6
3131
with:
3232
main-branch-name: main
3333
- name: Run Checks
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v4.1.7
4444
with:
4545
fetch-depth: 0
4646
- name: Setup Tools

‎.prettierrc

-5
This file was deleted.

‎examples/react/wip-with-bling/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@tanstack/bling": "^0.5.0",
1515
"@tanstack/react-router": "^1.45.8",
1616
"@tanstack/start": "^1.45.8",
17-
"@tanstack/react-store": "^0.5.4",
17+
"@tanstack/react-store": "^0.5.5",
1818
"@tanstack/router-devtools": "^1.45.8",
1919
"redaxios": "^0.5.1",
2020
"fastify": "^4.28.1",

‎nx.json

-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
]
2323
},
2424
"targetDefaults": {
25-
"test:format": {
26-
"cache": true,
27-
"inputs": ["{workspaceRoot}/**/*"]
28-
},
2925
"test:eslint": {
3026
"cache": true,
3127
"dependsOn": ["^build"],

‎package.json

+4-9
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"clean": "pnpm --filter \"./packages/**\" run clean",
1212
"preinstall": "node -e \"if(process.env.CI == 'true') {console.info('Skipping preinstall...')} else {process.exit(1)}\" || npx -y only-allow pnpm",
1313
"test": "pnpm run test:ci",
14-
"test:pr": "nx affected --targets=test:format,test:eslint,test:unit,test:e2e,test:types,test:build,build",
15-
"test:ci": "nx run-many --targets=test:format,test:eslint,test:unit,test:e2e,test:types,test:build,build",
14+
"test:pr": "nx affected --targets=test:eslint,test:unit,test:e2e,test:types,test:build,build",
15+
"test:ci": "nx run-many --targets=test:eslint,test:unit,test:e2e,test:types,test:build,build",
1616
"test:eslint": "nx affected --target=test:eslint --exclude=examples/**",
1717
"test:format": "pnpm run prettier --check",
1818
"test:unit": "nx affected --target=test:unit --exclude=examples/**",
@@ -29,16 +29,11 @@
2929
"cipublish": "node scripts/publish.js",
3030
"gpt-generate": "node gpt/generate.js"
3131
},
32-
"nx": {
33-
"includedScripts": [
34-
"test:format"
35-
]
36-
},
3732
"devDependencies": {
3833
"@eslint-react/eslint-plugin": "^1.5.30",
3934
"@playwright/test": "^1.45.2",
4035
"@rollup/plugin-replace": "^5.0.7",
41-
"@tanstack/config": "^0.9.6",
36+
"@tanstack/config": "^0.10.0",
4237
"@types/node": "^20.14.7",
4338
"@types/react": "^18.3.3",
4439
"@types/react-dom": "^18.3.0",
@@ -47,7 +42,7 @@
4742
"glob": "^10.4.5",
4843
"nx": "^19.5.1",
4944
"prettier": "^3.3.3",
50-
"publint": "^0.2.8",
45+
"publint": "^0.2.9",
5146
"react": "^18.3.1",
5247
"react-dom": "^18.3.1",
5348
"redaxios": "^0.5.1",

‎packages/react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"dependencies": {
6767
"@tanstack/history": "workspace:*",
68-
"@tanstack/react-store": "^0.5.4",
68+
"@tanstack/react-store": "^0.5.5",
6969
"tiny-invariant": "^1.3.3",
7070
"tiny-warning": "^1.0.3"
7171
},

‎pnpm-lock.yaml

+251-116
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎prettier.config.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// @ts-check
2+
3+
/** @type {import('prettier').Config} */
4+
const config = {
5+
semi: false,
6+
singleQuote: true,
7+
trailingComma: 'all',
8+
}
9+
10+
export default config

‎scripts/config.js

-70
This file was deleted.

‎scripts/publish.js

+58-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,66 @@
11
// @ts-check
22

3+
import { resolve } from 'node:path'
4+
import { fileURLToPath } from 'node:url'
35
import { publish } from '@tanstack/config/publish'
4-
import { branchConfigs, packages, rootDir } from './config.js'
6+
7+
const __dirname = fileURLToPath(new URL('.', import.meta.url))
58

69
await publish({
7-
branchConfigs,
8-
packages,
9-
rootDir,
10+
packages: [
11+
{
12+
name: '@tanstack/history',
13+
packageDir: 'packages/history',
14+
},
15+
{
16+
name: '@tanstack/react-router',
17+
packageDir: 'packages/react-router',
18+
},
19+
{
20+
name: '@tanstack/router-devtools',
21+
packageDir: 'packages/router-devtools',
22+
},
23+
{
24+
name: '@tanstack/router-generator',
25+
packageDir: 'packages/router-generator',
26+
},
27+
{
28+
name: '@tanstack/router-cli',
29+
packageDir: 'packages/router-cli',
30+
},
31+
{
32+
name: '@tanstack/router-plugin',
33+
packageDir: 'packages/router-plugin',
34+
},
35+
{
36+
name: '@tanstack/router-vite-plugin',
37+
packageDir: 'packages/router-vite-plugin',
38+
},
39+
{
40+
name: '@tanstack/react-cross-context',
41+
packageDir: 'packages/react-cross-context',
42+
},
43+
{
44+
name: '@tanstack/start',
45+
packageDir: 'packages/start',
46+
},
47+
{
48+
name: '@tanstack/start-vite-plugin',
49+
packageDir: 'packages/start-vite-plugin',
50+
},
51+
],
52+
branchConfigs: {
53+
main: {
54+
prerelease: false,
55+
},
56+
alpha: {
57+
prerelease: true,
58+
},
59+
beta: {
60+
prerelease: true,
61+
},
62+
},
63+
rootDir: resolve(__dirname, '..'),
1064
branch: process.env.BRANCH,
1165
tag: process.env.TAG,
1266
ghToken: process.env.GH_TOKEN,

‎scripts/types.d.ts

-9
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.