Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 2.0.15 #24

Merged
merged 3 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
npm run data

- name: Build Pages
run: npm run build
run: |
npm run build:scss
npm run build

- name: Generate service worker
run: |
Expand Down
6 changes: 6 additions & 0 deletions ideas.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@
## Fun

- https://www.emojiblast.dev

## CSS optimization

e.g.

<link rel="stylesheet" href="mobile.css" media="screen and (max-width: 480px)" />
180 changes: 90 additions & 90 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "cassette-beasts-extract",
"version": "2.0.14",
"version": "2.0.15",
"description": "Website generated from data & images extracted from the Cassette Beasts",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"lint": "npx eslint src",
"build:scss": "sass ./src/scss/responsive:./public/assets/css",
"data": "dotenv -- tsx --tsconfig ./tsconfig.data.json src/build.ts",
"data:dev": "dotenv -- tsx --tsconfig ./tsconfig.data.json src/main.ts",
"service-worker": "npx workbox-cli generateSW ./workbox-config.js",
Expand Down Expand Up @@ -49,4 +50,4 @@
"typescript": "^5.5.3",
"vite": "^5.3.4"
}
}
}
1 change: 1 addition & 0 deletions public/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/index.html
/about.html
/CNAME
/assets/css
/assets/js
/terms_and_conditions.html
/privacy_policy.html
Expand Down
Loading