Skip to content

Commit b64d6bd

Browse files
authored
Implement Tanstack DB and Tooling Modernization (#1)
1 parent 9c3223f commit b64d6bd

78 files changed

Lines changed: 3318 additions & 2653 deletions

File tree

Some content is hidden

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

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Prettierify
2+
b4b7cd186d9223b8f96386bdda6702b4867cd429

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ registries:
66
token: ${{secrets.DEPENDABOT_TOKEN}}
77
updates:
88
- package-ecosystem: "npm"
9-
directories:
9+
directories:
1010
- "/"
1111
- "script/workspace"
1212
schedule:

.github/workflows/build.yml

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,33 +16,34 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: 📤 Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
20+
- name: 🛠️ Setup pnpm
21+
uses: pnpm/action-setup@9b5745cdf0a2e8c2620f0746130f809adb911c19 #For cache support, update to tag when it is released.
22+
with:
23+
cache: true
2024
- name: 🛠️ Setup Node and Restore NPM Cache
2125
uses: actions/setup-node@v4
2226
with:
23-
node-version: 22.x
24-
cache: npm
25-
cache-dependency-path: package-lock.json
26-
registry-url: "https://npm.pkg.github.com"
27+
node-version: 22.21.x
28+
cache: pnpm
2729
- name: 🕒 Version
2830
shell: pwsh
29-
run: |
30-
pnpm version --no-git-tag-version $(Get-Date -Format 'yyyy.M.0-ci.${{ github.run_number }}')
31+
run: pnpm version --no-git-tag-version $(Get-Date -Format 'yyyy.M.0-ci.${{ github.run_number }}')
3132
- name: 🚚 Restore Packages (CI)
32-
run: pnpm ci
33-
- name: 💄 Prettier Formatting Check
34-
run: pnpm format-check
35-
- name: 🧹 Lint
36-
run: pnpm lint
33+
run: pnpm install --frozen-lockfile
34+
# Disable linting until we switch to ox or biome
35+
# - name: 💄 Prettier Formatting Check
36+
# run: pnpm format-check
37+
# - name: 🧹 Lint
38+
# run: pnpm lint
3739
- name: 👷 Build
3840
run: pnpm build
39-
- name: 🧪 Test
40-
run: pnpm test
41+
# - name: 🧪 Test
42+
# run: pnpm test
4143
- name: 📦 Package
42-
run: |
43-
pnpx @vscode/vsce package --no-update-package-json --no-git-tag-version --pre-release
44+
run: pnpm package
4445
- name: ⬆️ Upload Artifact
45-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v6
4647
with:
4748
name: github-actions-enhanced-vsix
4849
path: github-actions-enhanced-*.vsix

.vscode/extensions.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
{
2-
"recommendations": [
3-
"connor4312.esbuild-problem-matchers",
4-
"dbaeumer.vscode-eslint",
5-
"esbenp.prettier-vscode"
6-
]
7-
}
2+
"recommendations": ["connor4312.esbuild-problem-matchers", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
3+
}

.vscode/launch.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88
"args": ["--extensionDevelopmentPath=${workspaceFolder}", "--profile=debug-gha"],
99
"smartStep": true,
1010
"sourceMaps": true,
11-
"outFiles": [
12-
"${workspaceFolder}/dist/*.(m|c|)js",
13-
"!**/node_modules/**"
14-
],
15-
"preLaunchTask": "npm: watch",
11+
"preLaunchTask": "npm: watch"
1612
},
1713
{
1814
"name": "Launch Web Extension",
@@ -24,10 +20,7 @@
2420
"--profile=debug-gha",
2521
"--extensionDevelopmentKind=web"
2622
],
27-
"outFiles": [
28-
"${workspaceFolder}/dist/*.(m|c|)js",
29-
"!**/node_modules/**"
30-
],
23+
"outFiles": ["${workspaceFolder}/dist/*.(m|c|)js", "!**/node_modules/**"],
3124
"preLaunchTask": "npm: watch-web"
3225
},
3326
{

.vscode/settings.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,11 @@
1616
"${workspaceFolder}/**",
1717
"!**/node_modules/**",
1818
"**/$KNOWN_TOOLS$/**"
19-
]
20-
}
19+
],
20+
"chat.tools.terminal.autoApprove": {
21+
"/^pnpx madge --circular --extensions ts,tsx \\./src$/": {
22+
"approve": true,
23+
"matchCommandLine": true
24+
}
25+
}
26+
}

.vscode/tasks.json

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
"kind": "build",
1111
"isDefault": true
1212
},
13-
"isBackground": true,
14-
"problemMatcher": [
15-
"$esbuild"
16-
],
13+
"isBackground": false,
1714
"icon": {
1815
"id": "package",
1916
"color": "terminal.ansiGreen"
@@ -27,7 +24,25 @@
2724
"group": "build",
2825
"isBackground": true,
2926
"problemMatcher": [
30-
"$esbuild-watch"
27+
{
28+
"owner": "rolldown",
29+
"severity": "info",
30+
"source": "rolldown",
31+
"fileLocation": "relative",
32+
"pattern": [
33+
{
34+
"kind": "file",
35+
"regexp": "()()",
36+
"file": 1,
37+
"message": 2
38+
}
39+
],
40+
"background": {
41+
"activeOnStart": true,
42+
"beginsPattern": "^Found .* changed, rebuilding...$",
43+
"endsPattern": "^✔ (rolldown v.+? Finished|Rebuilt)"
44+
}
45+
}
3146
],
3247
"icon": {
3348
"id": "sync",
@@ -62,4 +77,4 @@
6277
}
6378
}
6479
]
65-
}
80+
}

.vscodeignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66

77
#Supporting items
88
!README.md
9-
!CHANGELOG.md
10-
!LICENSE
9+
!LICENSE.md
1110
!THIRD-PARTY-INCLUDES.MD

CHANGELOG.md

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

LICENSE renamed to LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
# MIT License
22

3-
Copyright GitHub
3+
Copyright 2026 Justin Grote (github.com/JustinGrote)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)