Skip to content

Commit

Permalink
Merge pull request #1 from mshinji/feat/vite
Browse files Browse the repository at this point in the history
Vite導入
  • Loading branch information
zurukumo authored Jan 18, 2024
2 parents ab34a00 + e522106 commit b43ffbd
Show file tree
Hide file tree
Showing 98 changed files with 6,077 additions and 11,293 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
}
16 changes: 16 additions & 0 deletions .github/workflows/static-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Static Test
on: push

jobs:
static-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run format:ci
- run: npx tsc
29 changes: 26 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
*.code-workspace
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
.next
/node_modules
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# 追加
*.code-workspace
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.10.0
20 changes: 0 additions & 20 deletions app/.babelrc

This file was deleted.

45 changes: 0 additions & 45 deletions app/.eslintrc

This file was deleted.

21 changes: 0 additions & 21 deletions app/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions app/.prettierrc

This file was deleted.

5 changes: 0 additions & 5 deletions app/next-env.d.ts

This file was deleted.

5 changes: 0 additions & 5 deletions app/next.config.js

This file was deleted.

58 changes: 0 additions & 58 deletions app/package.json

This file was deleted.

120 changes: 0 additions & 120 deletions app/src/components/Context.tsx

This file was deleted.

33 changes: 0 additions & 33 deletions app/src/components/Footer.tsx

This file was deleted.

Loading

0 comments on commit b43ffbd

Please sign in to comment.