Skip to content

Commit 689526c

Browse files
committed
Add CSS and cleanup
1 parent 46664ef commit 689526c

17 files changed

+1172
-880
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
.DS_Store
3-
dist
3+
dist
4+
coverage
5+
build
File renamed without changes.

configs/tsconfig.webpack.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "../tsconfig",
3+
"compilerOptions": {
4+
"sourceMap": true
5+
},
6+
"exclude": [
7+
"../**/*.test.tsx",
8+
"../node_modules"
9+
]
10+
}

jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const config: Config = {
1616
],
1717
},
1818
setupFilesAfterEnv: [
19-
"<rootDir>/tests/setupTests.ts"
19+
"<rootDir>/configs/setupTests.ts"
2020
],
2121
};
2222

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"dotenv": "^16.4.4",
2020
"eslint-plugin-react": "^7.33.2",
2121
"express": "^4.18.2",
22+
"postcss-loader": "^8.1.0",
2223
"react": "^18.2.0",
2324
"react-dom": "^18.2.0",
2425
"react-router-dom": "^6.22.0"
@@ -34,6 +35,7 @@
3435
"@types/react-dom": "^18.2.19",
3536
"@typescript-eslint/eslint-plugin": "^5.62.0",
3637
"@typescript-eslint/parser": "^5.62.0",
38+
"autoprefixer": "^10.4.17",
3739
"copy-webpack-plugin": "^12.0.2",
3840
"css-loader": "^6.10.0",
3941
"eslint": "^8.56.0",
@@ -45,7 +47,9 @@
4547
"jest": "^29.7.0",
4648
"jest-environment-jsdom": "^29.7.0",
4749
"nodemon": "^3.0.3",
50+
"postcss": "^8.4.35",
4851
"style-loader": "^3.3.4",
52+
"tailwindcss": "^3.4.1",
4953
"terser-webpack-plugin": "^5.3.10",
5054
"ts-jest": "^29.1.2",
5155
"ts-loader": "^9.5.1",

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}

public/favicon.ico

1.12 KB
Binary file not shown.

src/App.css

Whitespace-only changes.

src/App.tsx

Lines changed: 0 additions & 11 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)