Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: package updates #40

Merged
merged 2 commits into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion app/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,23 @@ export default function Navbar({ user }: NavbarProps) {
</Link>
<NavLink to="/tracks">Tracks</NavLink>
<NavLink to="/generator">Generate</NavLink>
<NavLink to="/tuner">Tuner</NavLink>
<a href="https://tuner.backytracky.com" className="flex items-center">
<span>Tuner</span>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth="1.5"
stroke="currentColor"
className="w-4 h-4 ml-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="m4.5 19.5 15-15m0 0H8.25m11.25 0v11.25"
></path>
</svg>
</a>
</nav>
<nav className="grid gap-4 grid-flow-col items-center">
{user?.username && (
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
"@remix-run/node": "2.1.0",
"@remix-run/react": "2.1.0",
"@remix-run/serve": "^2.1.0",
"@tonaljs/tonal": "^4.6.5",
"@tonaljs/tonal": "^4.10.0",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.3.0",
"remix-utils": "^7.0.0-pre.7",
"react-hot-toast": "^2.4.1",
"remix-utils": "^7.5.0",
"tone": "^14.7.77"
},
"devDependencies": {
Expand Down
3 changes: 0 additions & 3 deletions remix.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ const baseConfig =
module.exports = {
...baseConfig,
ignoredRouteFiles: ["**/.*"],
future: {
v2_routeConvention: true,
},
serverDependenciesToBundle: [
/^remix-utils.*/,
"remix-utils",
Expand Down
Loading