-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8b6142
commit ae98cfa
Showing
14 changed files
with
1,381 additions
and
400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Code Formatter | ||
|
||
on: push | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Run ESLint | ||
run: pnpm run format:check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Code Linting | ||
|
||
on: push | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Run ESLint | ||
run: pnpm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,12 @@ | |
"storybook": "storybook dev -p 6006", | ||
"build-storybook": "storybook build", | ||
"test-storybook": "test-storybook", | ||
"chromatic": "chromatic --exit-zero-on-changes" | ||
"chromatic": "chromatic --exit-zero-on-changes", | ||
"format:check": "prettier --check ." | ||
}, | ||
"dependencies": { | ||
"@tanstack/react-router": "0.0.1-beta.191", | ||
"@tanstack/react-router": "1.22.3", | ||
"@vanilla-extract/css": "~1.14.1", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"wretch": "^2.7.0" | ||
|
@@ -35,21 +37,22 @@ | |
"@types/react-dom": "^18.2.7", | ||
"@typescript-eslint/eslint-plugin": "^7.0.2", | ||
"@typescript-eslint/parser": "^7.0.2", | ||
"@vitejs/plugin-react-swc": "^3.3.2", | ||
"@vanilla-extract/vite-plugin": "~4.0.6", | ||
"@vitejs/plugin-react-swc": "^3.6.0", | ||
"chromatic": "7.2.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "9.1.0", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-refresh": "^0.4.5", | ||
"eslint-plugin-storybook": "^0.8.0", | ||
"prettier": "3.0.3", | ||
"prettier": "3.2.5", | ||
"prettier-plugin-css-order": "2.0.1", | ||
"sass": "1.67.0", | ||
"storybook": "^7.5.1", | ||
"storybook-addon-pseudo-states": "2.1.2", | ||
"typescript": "^5.0.2", | ||
"typescript-plugin-css-modules": "5.1.0", | ||
"vite": "^4.4.5" | ||
"vite": "^5.2.4" | ||
}, | ||
"readme": "ERROR: No README data found!", | ||
"_id": "[email protected]" | ||
|
Oops, something went wrong.