Skip to content

Commit 06127a6

Browse files
committed
feat: init commit
1 parent 57ad96e commit 06127a6

Some content is hidden

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

59 files changed

+9102
-40219
lines changed

.babelrc

-16
This file was deleted.

.changeset/config.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "master",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.dockerignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.git
3+
.nuxt
4+
.output

.editorconfig

-13
This file was deleted.

.eslintignore

-5
This file was deleted.

.eslintrc

-18
This file was deleted.

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm" # See documentation for possible values
4+
directory: "/" # Location of package manifests
5+
schedule:
6+
interval: "weekly"

.github/workflows/main.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- "master"
7+
pull_request:
8+
branches:
9+
- "master"
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: pnpm/action-setup@v4
19+
with:
20+
version: 8
21+
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: 20.x
25+
cache: "pnpm"
26+
27+
- name: Install dependencies
28+
run: pnpm install
29+
30+
- name: Lint and build
31+
run: pnpm lint && pnpm build
32+
33+
# - name: Create Release Pull Request
34+
# id: changesets
35+
# uses: changesets/action@v1
36+
# with:
37+
# version: pnpm changeset version
38+
# commit: "chore: version packages"
39+
# title: "chore: version packages"
40+
# env:
41+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+20-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
1-
node_modules
2-
*.log*
1+
# Nuxt dev/build outputs
2+
.output
3+
.data
34
.nuxt
45
.nitro
56
.cache
6-
.output
7-
.env
87
dist
8+
9+
# Node dependencies
10+
node_modules
11+
12+
# Logs
13+
logs
14+
*.log
15+
16+
# Misc
17+
.DS_Store
18+
.fleet
19+
.idea
20+
21+
# Local env files
22+
.env
23+
.env.*
24+
!.env.example

.husky/commit-msg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Run commitlint with the commit message passed as an argument
2+
npx commitlint --edit $1

.husky/pre-commit

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pnpm lint
2+
3+
npx lint-staged

.lintstagedrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"*.ts": ["prettier --write", "eslint . --fix"]
3+
}

.prettierignore

-96
This file was deleted.

.prettierrc

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"semi": false,
3-
"singleQuote": true,
4-
"printWidth": 80
5-
}
2+
"$schema": "https://json.schemastore.org/prettierrc",
3+
"semi": false,
4+
"tabWidth": 2,
5+
"singleQuote": true,
6+
"printWidth": 100,
7+
"trailingComma": "none"
8+
}

.stackblitzrc

-4
This file was deleted.

0 commit comments

Comments
 (0)