Skip to content

Commit 441eecc

Browse files
authored
Merge pull request #120 from rubixvi/development
chore: add pnpm workspace configuration to allow builds
2 parents 5bd278f + 80feb4d commit 441eecc

50 files changed

Lines changed: 1333 additions & 1991 deletions

Some content is hidden

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

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
branches:
1212
- main
1313

14+
env:
15+
ENABLE_EXPERIMENTAL_COREPACK: 1
16+
1417
jobs:
1518
build:
1619
runs-on: ubuntu-latest

app/docs/[[...slug]]/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { notFound } from 'next/navigation'
2+
23
import { ArticleBreadcrumb } from '@/components/article/breadcrumb'
34
import { Pagination } from '@/components/article/pagination'
45
import { TableOfContents } from '@/components/toc'

app/error.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use client'
22

33
import { useEffect } from 'react'
4+
45
import { Button } from '@/components/ui/button'
56

67
export default function ErrorBoundary({

app/layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { GoogleTagManager } from '@next/third-parties/google'
2-
import type { Metadata } from 'next'
2+
import { type Metadata } from 'next'
33
import { Inter } from 'next/font/google'
4+
45
import { Footer } from '@/components/navigation/footer'
56
import { Navbar } from '@/components/navigation/navbar'
67
import { Providers } from '@/providers'

app/robots.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { MetadataRoute } from 'next'
1+
import { type MetadataRoute } from 'next'
22

33
import { Settings } from '@/types/settings'
44

app/sitemap.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import type { MetadataRoute } from 'next'
1+
import { type MetadataRoute } from 'next'
2+
23
import { PageRoutes } from '@/lib/pageroutes'
34
import { Settings } from '@/types/settings'
45

0 commit comments

Comments
 (0)