Skip to content

Commit 7af5c4c

Browse files
committed
feat: skeleton dependencies and implement @tanstack/router
1 parent 91bc0fb commit 7af5c4c

52 files changed

Lines changed: 1909 additions & 1438 deletions

Some content is hidden

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

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
side-effects-cache = false

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Soliant Consulting
3+
Copyright (c) 2025 Soliant Consulting
44

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

biome.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"enabled": true
55
},
66
"files": {
7-
"include": ["biome.json", "commitlint.config.cjs", "packages/*/src/**/*"]
7+
"include": ["biome.json", "commitlint.config.cjs", "src/**/*"],
8+
"ignore": ["routeTree.gen.ts"]
89
},
910
"linter": {
1011
"enabled": true,

lefthook.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ pre-commit:
22
commands:
33
check:
44
glob: "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
5-
run: pnpm exec biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true {staged_files} && git update-index --again
5+
run: pnpm biome check --write --no-errors-on-unmatched --files-ignore-unknown=true {staged_files} && git update-index --again
66

77
commit-msg:
88
commands:
99
lint-commit-msg:
10-
run: pnpm exec commitlint --edit
10+
run: pnpm commitlint --edit

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,37 @@
1616
"test-synth": "tsx src/test-cli.ts",
1717
"build": "tsc",
1818
"format": "biome format . --write",
19-
"check": "biome check . --apply"
19+
"check": "biome check . --write"
2020
},
2121
"devDependencies": {
22-
"@biomejs/biome": "1.6.1",
23-
"@commitlint/cli": "^19.6.1",
24-
"@commitlint/config-conventional": "^19.6.0",
25-
"@tsconfig/node20": "^20.1.4",
26-
"@types/node": "^20.17.12",
27-
"@types/semver": "^7.5.8",
22+
"@biomejs/biome": "1.9.4",
23+
"@commitlint/cli": "^19.8.0",
24+
"@commitlint/config-conventional": "^19.8.0",
25+
"@tsconfig/node22": "^22.0.1",
26+
"@types/node": "^22.13.16",
27+
"@types/semver": "^7.7.0",
2828
"@types/source-map-support": "^0.5.10",
29-
"lefthook": "^1.10.5",
30-
"pkg-types": "^1.3.1",
31-
"tsx": "^4.19.2",
32-
"typescript": "^5.7.3"
29+
"lefthook": "^1.11.6",
30+
"pkg-types": "^2.1.0",
31+
"tsx": "^4.19.3",
32+
"typescript": "^5.8.2"
3333
},
3434
"dependencies": {
35-
"@aws-sdk/client-acm": "^3.726.1",
36-
"@aws-sdk/client-cloudformation": "^3.726.1",
37-
"@aws-sdk/client-sts": "^3.726.1",
35+
"@aws-sdk/client-acm": "^3.777.0",
36+
"@aws-sdk/client-cloudformation": "^3.777.0",
37+
"@aws-sdk/client-sts": "^3.777.0",
3838
"@listr2/prompt-adapter-enquirer": "^2.0.12",
3939
"@soliantconsulting/bitbucket-cloud-cli-auth": "^1.0.0",
4040
"@soliantconsulting/bitbucket-openid-connect": "^1.2.0",
41-
"aws-cdk": "^2.175.1",
41+
"aws-cdk": "^2.1006.0",
4242
"deepmerge": "^4.3.1",
4343
"enquirer": "^2.4.1",
44-
"execa": "^8.0.1",
45-
"glob": "^10.4.5",
44+
"execa": "^9.5.2",
45+
"glob": "^11.0.1",
4646
"handlebars": "^4.7.8",
4747
"listr2": "^8.2.5",
4848
"meow": "^13.2.0",
49-
"semver": "^7.6.3",
49+
"semver": "^7.7.1",
5050
"source-map-support": "^0.5.21"
5151
},
5252
"packageManager": "pnpm@8.15.6+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f"

0 commit comments

Comments
 (0)