Skip to content

Commit

Permalink
Merge branch 'main' into sgunter/fix-ics-calendar-export-dates
Browse files Browse the repository at this point in the history
  • Loading branch information
doprz authored Mar 1, 2025
2 parents 87d6a3c + 56a82ba commit b211849
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 21 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/best-practices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Install dependencies
run: pnpm install
Expand All @@ -32,9 +32,9 @@ jobs:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Install dependencies
run: pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Install dependencies
run: pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Install dependencies
run: pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Install dependencies
run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM node:20.9.0-alpine AS base

# Install pnpm
RUN npm install -g pnpm
RUN npm install -g pnpm@latest-10

# Set working directory
WORKDIR /app
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@
"vite-plugin-inspect": "^0.8.9",
"vitest": "^2.1.9"
},
"engineStrict": true,
"engines": {
"pnpm": "^10"
},
"pnpm": {
"patchedDependencies": {
"@crxjs/[email protected]": "patches/@[email protected]",
Expand Down
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/views/components/calendar/CalendarBottomBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function CalendarBottomBar({ courseCells, setCourse }: CalendarBo
{displayCourses && (
<>
<Text variant='p' className='text-ut-black uppercase'>
Unscheduled
Async / Other
</Text>
<Text variant='h4' className='text-theme-offwhite/50'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
))}
</select>
<Link variant='small' href={UT_GRADE_DISTRIBUTION_URL} className='link'>
About the data
Data Source
</Link>
</div>
{distributions[semester] && !distributions[semester]!.instructorIncluded && (
Expand Down

0 comments on commit b211849

Please sign in to comment.