-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5132885
commit 7c9c7c3
Showing
15 changed files
with
450 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
// This file is generated by icon spritesheet generator | ||
|
||
export const iconNames = ["ShoppingCart"] as const | ||
export const iconNames = [ | ||
"ShoppingCart", | ||
] as const | ||
|
||
export type IconName = (typeof iconNames)[number] | ||
export type IconName = typeof iconNames[number] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import { flatRoutes } from "@react-router/fs-routes" | ||
|
||
export const routes = flatRoutes() | ||
export default flatRoutes() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
"lint": "biome check .", | ||
"lint:ci": "biome ci .", | ||
"lint:fix": "biome check --write .", | ||
"start": "react-router-serve ./build/server/index.js", | ||
"start": "node ./build/server/index.js", | ||
"test": "vitest run", | ||
"test:ui": "vitest --ui --api 9527", | ||
"test:cov": "vitest run --coverage", | ||
|
@@ -24,13 +24,12 @@ | |
"check:fix": "biome check --fix .", | ||
"check:unused": "knip --max-issues 1", | ||
"check:unused:fix": "knip --fix", | ||
"typegen": "react-router typegen && tsc", | ||
"postinstall": "react-router typegen" | ||
"typegen": "react-router typegen", | ||
"postinstall": "npm run typegen" | ||
}, | ||
"dependencies": { | ||
"@forge42/seo-tools": "^1.3.0", | ||
"@react-router/node": "7.0.0-pre.0", | ||
"@react-router/serve": "7.0.0-pre.0", | ||
"@react-router/node": "7.0.0-pre.6", | ||
"clsx": "^2.1.1", | ||
"hono": "^4.6.3", | ||
"i18next": "^23.15.2", | ||
|
@@ -41,7 +40,7 @@ | |
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-i18next": "^15.0.2", | ||
"react-router": "7.0.0-pre.0", | ||
"react-router": "7.0.0-pre.6", | ||
"react-router-hono-server": "https://pkg.pr.new/rphlmr/[email protected]", | ||
"remix-hono": "^0.0.16", | ||
"remix-i18next": "^6.4.1", | ||
|
@@ -51,8 +50,8 @@ | |
"devDependencies": { | ||
"@biomejs/biome": "^1.9.3", | ||
"@dotenvx/dotenvx": "^1.16.0", | ||
"@react-router/dev": "7.0.0-pre.0", | ||
"@react-router/fs-routes": "7.0.0-pre.0", | ||
"@react-router/dev": "7.0.0-pre.6", | ||
"@react-router/fs-routes": "7.0.0-pre.6", | ||
"@types/node": "^22.7.5", | ||
"@types/prompt": "^1.1.9", | ||
"@types/react": "^18.3.11", | ||
|
@@ -66,7 +65,7 @@ | |
"lefthook": "^1.7.18", | ||
"postcss": "^8.4.47", | ||
"prompt": "^1.3.0", | ||
"remix-development-tools": "https://pkg.pr.new/forge42dev/Remix-Dev-Tools/remix-development-tools@151.tgz", | ||
"react-router-devtools": "https://pkg.pr.new/forge42dev/Remix-Dev-Tools/react-router-devtools@151.tgz", | ||
"tailwindcss": "^3.4.13", | ||
"tsx": "^4.19.1", | ||
"typescript": "^5.6.2", | ||
|
@@ -83,4 +82,4 @@ | |
"node": ">=20.15.1", | ||
"pnpm": ">=9.8.0" | ||
} | ||
} | ||
} |
Oops, something went wrong.