Skip to content

Commit

Permalink
Try dependency updates again and remove rogue JS file
Browse files Browse the repository at this point in the history
This reverts commit e8cd9e0.
  • Loading branch information
ChrisChinchilla committed Nov 20, 2023
1 parent ad76fe0 commit 8baa24e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 54 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build": "astro build --verbose",
"preview": "astro preview",
"astro": "astro",
"format": "prettier -w .",
"lint:eslint": "eslint . --ext .js,.ts,.astro"
},
"dependencies": {
"@astropub/md": "https://gitpkg.now.sh/kizu/md/packages/md?astro-update",
"@astropub/md": "0.3.0",
"@astrojs/react": "^3.0.5",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
Expand Down Expand Up @@ -43,7 +43,7 @@
"astro": "^3.5.5",
"astro-compress": "^2.2.3",
"astro-icon": "^0.8.1",
"eslint": "^8.53.0",
"eslint": "^8.54.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"limax": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/courses.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Headline from '~/components/blog/Headline.astro';
import Course from '../components/Course.astro';
import { getCollection } from 'astro:content';
const courseAV = await getCollection('av', ({ data }) => {
return data.av_type !== 'course';
return data.video_type !== 'course';
});
const meta = {
title: 'Courses',
Expand Down
50 changes: 0 additions & 50 deletions src/pages/podcast/convert.js

This file was deleted.

0 comments on commit 8baa24e

Please sign in to comment.