diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b80d443..6a67f31 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - path: public/ + path: dist/ deploy: environment: name: github-pages diff --git a/bun.lockb b/bun.lockb index 2336624..373cb33 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/config/template.html b/config/template.html deleted file mode 100644 index 6e185fd..0000000 --- a/config/template.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Carter's RSS Feeds - - - - - - - -
-

📰 Carter's RSS Feeds

-
-
- {% for group, feeds in data %} -
-

{{ group }}

-
- {% for feed in feeds %} -
- - {% if feed.hasRecent %} -
✳︎
- {% endif %} -
-
{{ feed.title }}
-
({{ - feed.feed }})
-
-
-
    - {% for item in feed.items %} -
  • - {% if item.isRecent %} -
    ✳︎
    - {% endif %} -
    - -
    - {{ item.timestamp | formatDateTime}} -
    - {% if yazzyUrl %} -
    - yazzy -
    - {% endif %} -
    -
  • - {% endfor %} -
-
- {% endfor %} -
-
- {% endfor %} -
- {% if errors | length > 0 %} -
-

Errors

-

There were errors trying to parse these feeds:

- -
- {% endif %} - - - - diff --git a/package.json b/package.json index 5cd6b05..936a8c3 100644 --- a/package.json +++ b/package.json @@ -28,22 +28,15 @@ "license": "MIT", "dependencies": { "@astrojs/tailwind": "^5.1.0", - "@feelinglovelynow/get-relative-time": "^1.1.2", "astro": "^4.14.4", - "chalk": "^5.2.0", - "node-fetch": "^3.3.1", - "nunjucks": "^3.2.4", "rss-parser": "^3.13.0" }, "devDependencies": { "@biomejs/biome": "^1.8.1", "@types/bun": "latest", - "@types/nunjucks": "^3.2.2", "@types/xml2js": "^0.4.11", "tailwindcss": "^3.4.6", - "tslib": "^2.5.3", - "typescript": "^5.1.3", - "typescript-eslint": "^7.13.1" + "typescript": "^5.1.3" }, "trustedDependencies": ["@biomejs/biome"] }