From 5e31ae8937b0dba526103f6b6d27370e8ba2305f Mon Sep 17 00:00:00 2001 From: Kevin Lewis Date: Sat, 15 Feb 2025 20:20:58 +0100 Subject: [PATCH 1/5] Adding Kevin Lewis --- src/data.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/data.js b/src/data.js index 42cdb9e1..4ecea750 100644 --- a/src/data.js +++ b/src/data.js @@ -4204,6 +4204,17 @@ module.exports = [ 'Next.js', ], }, + { + name: 'Kevin Lewis', + description: 'I am a developer relations person who loves community and education. Brit in Germany.', + url: 'https://lws.io/blog/uses', + bluesky: 'lws.io', + emoji: '💞', + country: '🇩🇪', + computer: 'apple', + phone: 'iphone', + tags: ['Developer', 'Education', 'Dad', 'Open Source Software', 'JavaScript', ], + }, { name: 'Bill Sullivan', description: From 5c7428c075428f63db37795c8544d2e4445b45e1 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 19 Feb 2025 16:18:49 -0500 Subject: [PATCH 2/5] removes content visibility because chrome makes it LAG like crazy --- src/components/Person.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/Person.js b/src/components/Person.js index cd4ae995..a426b924 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -16,10 +16,7 @@ export default function Person({ person }) { const [_, mastodonHandle, mastodonServer] = person.mastodon?.split('@') || []; const { tag: currentTag } = useParams(); return ( -
+
Date: Fri, 25 Apr 2025 14:17:01 -0300 Subject: [PATCH 3/5] update country property to use flag emoji for Brazil --- src/data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.js b/src/data.js index 42cdb9e1..b182820d 100644 --- a/src/data.js +++ b/src/data.js @@ -87,7 +87,7 @@ module.exports = [ url: 'https://iagobruno.is-a.dev/uses', twitter: '@iagotico', emoji: '🏳️‍🌈', - country: 'BR', + country: '🇧🇷', computer: 'windows', phone: 'iphone', tags: [ From 9a0d2ca32589db40472f537160899b4ab7da8cdc Mon Sep 17 00:00:00 2001 From: Blake Campbell Date: Thu, 21 Aug 2025 16:58:35 -0400 Subject: [PATCH 4/5] Updating github pipelines --- .github/workflows/data-validate.yml | 6 +++--- .github/workflows/populate-readme.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/data-validate.yml b/.github/workflows/data-validate.yml index 81e20dc8..61633c6e 100644 --- a/.github/workflows/data-validate.yml +++ b/.github/workflows/data-validate.yml @@ -11,13 +11,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16.x - name: Cache/Restore node modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/populate-readme.yml b/.github/workflows/populate-readme.yml index f9f3305d..557e0579 100644 --- a/.github/workflows/populate-readme.yml +++ b/.github/workflows/populate-readme.yml @@ -14,13 +14,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16.x - name: Cache/Restore node modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} From f60cf83a2c65501d4186381a7449f011e0d20d82 Mon Sep 17 00:00:00 2001 From: Blake Campbell Date: Fri, 22 Aug 2025 08:55:36 -0400 Subject: [PATCH 5/5] Updating node version to 18 --- .github/workflows/data-validate.yml | 2 +- .github/workflows/populate-readme.yml | 2 +- .node-version | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/data-validate.yml b/.github/workflows/data-validate.yml index 61633c6e..1b426b33 100644 --- a/.github/workflows/data-validate.yml +++ b/.github/workflows/data-validate.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 18.x - name: Cache/Restore node modules uses: actions/cache@v4 diff --git a/.github/workflows/populate-readme.yml b/.github/workflows/populate-readme.yml index 557e0579..6215dd5a 100644 --- a/.github/workflows/populate-readme.yml +++ b/.github/workflows/populate-readme.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 18.x - name: Cache/Restore node modules uses: actions/cache@v4 diff --git a/.node-version b/.node-version index 07c142ff..a9d08739 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -16.13.1 +18.19.0 diff --git a/package.json b/package.json index e9e6d0de..44cbadf5 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ ] }, "engines": { - "node": ">= 16" + "node": ">= 18" }, "dependencies": { "@actions/core": "^1.10.0",