Skip to content

Commit

Permalink
Merge pull request #36 from torontojs/chore/update-dependencies
Browse files Browse the repository at this point in the history
Chore: update dependencies
  • Loading branch information
madcampos authored Jul 26, 2024
2 parents b12ae5f + a6a4bfc commit ed7c84d
Show file tree
Hide file tree
Showing 8 changed files with 1,887 additions and 1,204 deletions.
2,831 changes: 1,877 additions & 954 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "torontojs-blog",
"version": "0.0.2",
"version": "0.0.3",
"private": true,
"license": "MIT",
"type": "module",
Expand All @@ -23,7 +23,7 @@
"prepreview": "npm run build",
"preview": "astro preview --site=https://localhost:3000/",
"typecheck": "tsc --noEmit",
"lint:js": "eslint src --ext .js,.mjs,.ts,.mts,.astro --fix --ignore-path .gitignore",
"lint:js": "eslint src --fix",
"lint:css": "stylelint src/**/*.{css,astro} --fix",
"lint:md": "astro check",
"lint:html": "markuplint src/**/*.{html,astro} --fix && markuplint src/**/**/*.{html,astro} --fix",
Expand All @@ -40,25 +40,25 @@
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@iconify-json/brandico": "^1.1.8",
"@iconify-json/fa6-brands": "^1.1.20",
"@iconify-json/fa6-brands": "^1.1.21",
"@iconify-json/mdi": "^1.1.67",
"@iconify-json/uil": "^1.1.8",
"@markuplint/astro-parser": "^4.6.5",
"@stylistic/eslint-plugin": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vite-pwa/astro": "^0.4.0",
"astro": "^4.11.5",
"astro": "^4.12.2",
"astro-icon": "^1.1.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.2",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.9.0",
"husky": "^9.0.11",
"husky": "^9.1.2",
"marked": "^13.0.2",
"markuplint": "^4.9.2",
"stylelint": "^16.6.1",
"stylelint": "^16.7.0",
"stylelint-config-html": "^1.1.0",
"typescript": "^5.5.3"
"typescript": "^5.5.4"
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
Expand Down
Binary file added src/assets/icons/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
240 changes: 0 additions & 240 deletions src/assets/icons/tjs.svg

This file was deleted.

Binary file removed src/assets/images/cnTowerMain.png
Binary file not shown.
Binary file removed src/assets/images/guild_logo.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/pages/changelog.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { getCollection } from 'astro:content';

import { parseMarkdown } from '../utils/markdown';

import defaultImage from '../assets/images/logo.png';
import defaultImage from '../assets/icons/logo.png';

export const GET: APIRoute = async (context) => {
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
Expand Down
2 changes: 1 addition & 1 deletion src/pages/feed.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getImage } from 'astro:assets';

import { listAllPosts } from '../utils/post';

import defaultImage from '../assets/images/logo.png';
import defaultImage from '../assets/icons/logo.png';
import { parseMarkdown } from '../utils/markdown';

export const GET: APIRoute = async (context) => {
Expand Down

0 comments on commit ed7c84d

Please sign in to comment.