-
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.
Merge pull request #141 from hiroki0525/improve
Improve
- Loading branch information
Showing
25 changed files
with
11,061 additions
and
35,325 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Setup | ||
description: "Setup Node.js, pnpm and dependencies" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v2 | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.node-version' | ||
cache: 'pnpm' | ||
- name: Install Dependencies | ||
run: pnpm i -r --frozen-lockfile | ||
shell: bash | ||
- name: Build | ||
run: pnpm build | ||
shell: bash |
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 |
---|---|---|
@@ -1 +1 @@ | ||
18.12.1 | ||
20.11.1 |
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 @@ | ||
enable-pre-post-scripts=true |
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 |
---|---|---|
|
@@ -5,30 +5,31 @@ | |
"main": "index.tsx", | ||
"scripts": { | ||
"start": "webpack-dev-server --mode=development", | ||
"build": "npm run clean && webpack --mode=production", | ||
"deploy": "npm run build && gh-pages -d dist", | ||
"build": "pnpm clean && webpack --mode=production", | ||
"deploy": "pnpm build && gh-pages -d dist", | ||
"clean": "rm -rf dist" | ||
}, | ||
"author": "Hiroki Miyaji <[email protected]>", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.7", | ||
"css-loader": "^6.7.1", | ||
"autoprefixer": "^10.4.18", | ||
"css-loader": "^6.10.0", | ||
"file-loader": "^6.2.0", | ||
"gh-pages": "^4.0.0", | ||
"html-webpack-plugin": "^5.5.0", | ||
"postcss": "^8.4.13", | ||
"postcss-loader": "^7.0.1", | ||
"style-loader": "^3.3.1", | ||
"tailwindcss": "^3.0.24", | ||
"ts-loader": "^9.2.8", | ||
"gh-pages": "^6.1.1", | ||
"html-webpack-plugin": "^5.6.0", | ||
"postcss": "^8.4.35", | ||
"postcss-loader": "^8.1.1", | ||
"style-loader": "^3.3.4", | ||
"tailwindcss": "^3.4.1", | ||
"ts-loader": "^9.5.1", | ||
"url-loader": "^4.1.1", | ||
"web-vitals": "^3.0.4", | ||
"webpack": "^5.71.0", | ||
"webpack-cli": "^4.9.2", | ||
"webpack-dev-server": "^4.7.4" | ||
"web-vitals": "^3.5.2", | ||
"webpack": "^5.90.3", | ||
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^5.0.2" | ||
}, | ||
"dependencies": { | ||
"react-router-dom": "^6.3.0" | ||
"react-router-dom": "^6.22.3", | ||
"react-dom-lazyload-component": "workspace:*" | ||
} | ||
} |
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,4 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"include": ["./src/**/*"] | ||
} |
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
Oops, something went wrong.