mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Merge branch 'master' into pr/1926
This commit is contained in:
commit
7a8ee9aae3
6 changed files with 23 additions and 15 deletions
8
.github/workflows/data-validate.yml
vendored
8
.github/workflows/data-validate.yml
vendored
|
|
@ -11,13 +11,13 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 16.x
|
node-version: 18.x
|
||||||
|
|
||||||
- name: Cache/Restore node modules
|
- name: Cache/Restore node modules
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
|
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
|
||||||
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
|
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
|
||||||
|
|
|
||||||
8
.github/workflows/populate-readme.yml
vendored
8
.github/workflows/populate-readme.yml
vendored
|
|
@ -14,13 +14,13 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 16.x
|
node-version: 18.x
|
||||||
|
|
||||||
- name: Cache/Restore node modules
|
- name: Cache/Restore node modules
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
|
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
|
||||||
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
|
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
16.13.1
|
18.19.0
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 16"
|
"node": ">= 18"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.0",
|
"@actions/core": "^1.10.0",
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,7 @@ export default function Person({ person }) {
|
||||||
const [_, mastodonHandle, mastodonServer] = person.mastodon?.split('@') || [];
|
const [_, mastodonHandle, mastodonServer] = person.mastodon?.split('@') || [];
|
||||||
const { tag: currentTag } = useParams();
|
const { tag: currentTag } = useParams();
|
||||||
return (
|
return (
|
||||||
<div
|
<div className="PersonWrapper">
|
||||||
className="PersonWrapper"
|
|
||||||
style={{ contentVisibility: "auto", containIntrinsicHeight: "560px" }}
|
|
||||||
>
|
|
||||||
<div className="PersonInner">
|
<div className="PersonInner">
|
||||||
<header>
|
<header>
|
||||||
<img
|
<img
|
||||||
|
|
|
||||||
13
src/data.js
13
src/data.js
|
|
@ -87,7 +87,7 @@ module.exports = [
|
||||||
url: 'https://iagobruno.is-a.dev/uses',
|
url: 'https://iagobruno.is-a.dev/uses',
|
||||||
twitter: '@iagotico',
|
twitter: '@iagotico',
|
||||||
emoji: '🏳️🌈',
|
emoji: '🏳️🌈',
|
||||||
country: 'BR',
|
country: '🇧🇷',
|
||||||
computer: 'windows',
|
computer: 'windows',
|
||||||
phone: 'iphone',
|
phone: 'iphone',
|
||||||
tags: [
|
tags: [
|
||||||
|
|
@ -4204,6 +4204,17 @@ module.exports = [
|
||||||
'Next.js',
|
'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',
|
name: 'Bill Sullivan',
|
||||||
description:
|
description:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue