Skip to content

Commit f5f283f

Browse files
authored
Merge pull request #192 from braswelljr/v2
feat: fix and upgrade deps for v2
2 parents 38621a8 + f5b78e3 commit f5f283f

107 files changed

Lines changed: 15531 additions & 1991 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.commitlintrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 9 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 94 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
version: 2
22
updates:
33
# Fetch and update latest `npm` packages
4-
- package-ecosystem: 'npm'
5-
directory: '/'
6-
schedule:
7-
interval: weekly
8-
# time: '00:00'
9-
open-pull-requests-limit: 10
10-
reviewers:
11-
- braswelljr
12-
assignees:
13-
- braswelljr
14-
commit-message:
15-
prefix: fix
16-
prefix-development: chore
17-
include: scope
4+
# - package-ecosystem: 'npm'
5+
# directory: '/'
6+
# schedule:
7+
# interval: weekly
8+
# # time: '00:00'
9+
# open-pull-requests-limit: 10
10+
# reviewers:
11+
# - braswelljr
12+
# assignees:
13+
# - braswelljr
14+
# commit-message:
15+
# prefix: fix
16+
# prefix-development: chore
17+
# include: scope
1818
# Fetch and update latest `github-actions` pkgs
1919
- package-ecosystem: github-actions
2020
directory: '/'

.github/workflows/build-test.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Build website
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
cache-and-install:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- uses: pnpm/action-setup@v4
20+
name: Install pnpm
21+
with:
22+
version: 10
23+
24+
- name: Install Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
# node-version: 20
28+
cache: 'pnpm'
29+
30+
- name: Get pnpm store directory
31+
shell: bash
32+
run: |
33+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
34+
35+
- uses: actions/cache@v4
36+
name: Setup pnpm cache
37+
with:
38+
path: ${{ env.STORE_PATH }}
39+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
40+
restore-keys: |
41+
${{ runner.os }}-pnpm-store-
42+
43+
- name: Install dependencies
44+
run: pnpm install
45+
46+
- name: Build project
47+
run: pnpm run build

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL"
12+
name: 'CodeQL'
1313

1414
on:
1515
push:
@@ -18,7 +18,7 @@ on:
1818
# The branches below must be a subset of the branches above
1919
branches: [main]
2020
schedule:
21-
- cron: "40 22 * * 3"
21+
- cron: '40 22 * * 3'
2222

2323
jobs:
2424
analyze:
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
os: [ubuntu-latest]
37-
language: ["javascript", "typescript"]
37+
language: ['javascript', 'typescript']
3838
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
3939
# Learn more:
4040
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

.github/workflows/codeql.yml

Lines changed: 0 additions & 77 deletions
This file was deleted.

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ yarn-error.log*
3535
.vercel
3636

3737
# locks
38-
package-lock.json
39-
yarn.lock
40-
pnpm-lock.yaml
38+
# package-lock.json
39+
# yarn.lock
40+
# pnpm-lock.yaml
4141

4242
# editor configs
4343
.idea
44-
.vscode
44+
# .vscode
45+
# !.vscode/settings.json
4546
.sublime
4647

4748
# registered workers

.husky/commit-msg

Lines changed: 0 additions & 5 deletions
This file was deleted.

.husky/common.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)