-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Features - Add bluesky share button - Add new max width to Container - Add background blur to ProgressBar component - Add textTransform and optional title to SubTitle - Add bluesky share option to PostShareBanner - Add optional position to ThemeIcon - Add Header component - Add new description to tag and category pages - Add new description for blog and projects pages - Add optional display and margin to SubTitle - Add display option to Link component - Add `javascript-time-ago` dependency - Add PostDateTime component - Add new open graph template - Add color to post schema - Add new open graph background - Add optional banner in posts - Add default open graph image - Add `remark-responsive-tables` package - Add height to scrollbar - Add `isIndexable` to post schema - Add scale animation on hover to PostCard ### Changes - **Allow cors to css and open-graph** - Update link style in blog posts - Update dependencies - Update blog and projects pages layout - Update header margin-bottom - Update share icon from twitter to x - Update remark-post-reference height - **Update post file names and slug** - **Update go-scs-test slug, title and description** - Remove alternative tag - Remove Navigation component - Remove ThemeIcon from Layout - Remove Links component - Move category to the page top - Move Links component to Socials - Replace banner.png with default-og.png - **Rename `markdown-showcase` to `hello-world`** - Implement missing easyShare feature ### Fixes - Fix wrong css tag class name - Fix lint errors - Fix comments being loaded even after enableComments set to false - Fix markdown table overflow *Bump version to 1.10.0*
- Loading branch information
Showing
49 changed files
with
2,150 additions
and
1,492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@lucjosin/lucasjosino.com", | ||
"packageManager": "[email protected]", | ||
"version": "1.9.0", | ||
"version": "1.10.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "astro dev", | ||
|
@@ -11,6 +11,7 @@ | |
"astro": "astro" | ||
}, | ||
"devDependencies": { | ||
"@adapttive/remark-responsive-tables": "^1.0.1", | ||
"@astrojs/sitemap": "3.1.1", | ||
"@lucjosin/remark-alert-blocks": "./plugins/remark-alert-blocks", | ||
"@lucjosin/remark-code-highlight": "./plugins/remark-code-highlight", | ||
|
@@ -20,15 +21,16 @@ | |
"@lucjosin/remark-readme-stats": "./plugins/remark-readme-stats", | ||
"@typescript-eslint/eslint-plugin": "^6.8.0", | ||
"@typescript-eslint/parser": "^6.8.0", | ||
"astro": "^4.4.9", | ||
"astro-compress": "^2.2.11", | ||
"astro-expressive-code": "^0.33.4", | ||
"astro": "^4.8.6", | ||
"astro-compress": "^2.2.23", | ||
"astro-expressive-code": "^0.35.3", | ||
"astro-icon": "^1.1.0", | ||
"astro-rename": "^1.1.2", | ||
"astro-robots-txt": "^1.0.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-astro": "^0.31.4", | ||
"javascript-time-ago": "^2.5.10", | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-astro": "^0.13.0", | ||
"rehype-autolink-headings": "^7.1.0", | ||
|
@@ -40,7 +42,7 @@ | |
"satori": "^0.10.13", | ||
"satori-html": "^0.3.2", | ||
"svgo": "2.8.0", | ||
"typescript": "^5.3.3" | ||
"typescript": "^5.4.5" | ||
}, | ||
"dependencies": { | ||
"@astrojs/react": "3.0.10", | ||
|
@@ -53,10 +55,13 @@ | |
"@swup/astro": "^1.3.2", | ||
"@types/react": "^18.2.29", | ||
"@types/react-dom": "^18.2.14", | ||
"astro-meta-tags": "^0.2.1", | ||
"astro-meta-tags": "^0.3.0", | ||
"medium-zoom": "^1.1.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"reading-time": "^1.5.0" | ||
}, | ||
"resolutions": { | ||
"sharp": "0.33.1" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<IfModule mod_headers.c> | ||
Header always set Access-Control-Allow-Origin "*" | ||
</IfModule> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<IfModule mod_headers.c> | ||
Header always set Access-Control-Allow-Origin "*" | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.