Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
feat(shows): add youtube series to web.dev, fixes #5466 (#5563)
Browse files Browse the repository at this point in the history
* feat(shows): add youtube series to web.dev, fixes #5466

* refactor(hooks/utils): only return data if in prod

* refactor(shows): make changes based on feedback

* refactor(shows): update individual show pagination

* test(shows): add percy test for shows

* refactor(shows): make updates based on feedback
  • Loading branch information
MichaelSolati authored Jul 23, 2021
1 parent d6e4f52 commit a55db0b
Show file tree
Hide file tree
Showing 39 changed files with 33,662 additions and 262 deletions.
2 changes: 2 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const pages = require('./src/site/_collections/pages');
const {
postsWithLighthouse,
} = require('./src/site/_collections/posts-with-lighthouse');
const shows = require('./src/site/_collections/shows');
const tags = require('./src/site/_collections/tags');

// Filters
Expand Down Expand Up @@ -141,6 +142,7 @@ module.exports = function (config) {
config.addCollection('newsletters', newsletters);
config.addCollection('pages', pages);
config.addCollection('postsWithLighthouse', postsWithLighthouse);
config.addCollection('shows', shows);
config.addCollection('tags', tags);
// Turn collection.all into a lookup table so we can use findBySlug
// to quickly find collection items without looping.
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ entrypoint.hashmanifest.json
.vscode

# Temporary files
.cache
.tmp
.firebase
firebase.json
Expand Down
Loading

0 comments on commit a55db0b

Please sign in to comment.