Releases: joulev/nextjs-route-types
Releases · joulev/nextjs-route-types
v2.0.1
v2.0.0
v1.1.1
v1.1.0
Add support for parallel route props of LayoutProps
:
.
└── app/../
├── layout.tsx
├── page.tsx
└── @test/
└── page.tsx
In the above directory, layout.tsx
's LayoutProps
will also receive the test
prop
export default function Layout({ test, children }: LayoutProps) {
return <div>{test} {children}</div>;
}
v1.0.2
v1.0.1
Fix webpack
being mistakenly marked as a dependency while it should be in devDependencies
instead. This update significantly reduces the number of dependencies.
Full Changelog: v1.0.0...v1.0.1