Skip to content

Commit

Permalink
chore: update deps, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
apvarun committed Oct 25, 2023
1 parent 2edcfff commit 50b5c65
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 58 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ dist
dist-ssr
*.local
*.tgz
tailwind-output.css
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
node_modules
dist-ssr
*.local
tailwind-output.css
19 changes: 0 additions & 19 deletions app/package.json

This file was deleted.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@
],
"devDependencies": {
"@size-limit/file": "^9.0.0",
"@types/connect": "^3.4.36",
"@types/connect": "^3.4.37",
"@types/cross-spawn": "^6.0.4",
"@types/fs-extra": "^11.0.2",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@types/fs-extra": "^11.0.3",
"@types/react": "^18.2.32",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.16",
"husky": "^8.0.3",
"postcss": "^8.4.31",
Expand All @@ -70,7 +70,7 @@
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.11"
"vite": "^4.5.0"
},
"dependencies": {
"analyze-css": "^2.1.123",
Expand All @@ -85,7 +85,7 @@
"react-dom": "^18.2.0",
"sirv": "^2.0.3",
"swr": "^2.2.4",
"tailwindcss": "^3.3.3",
"tailwindcss": "^3.3.5",
"tmp": "^0.2.1"
}
}
77 changes: 48 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
content: ['./app/src/**/*.{js,ts,jsx,tsx}'],
mode: 'jit',
darkMode: false, // or 'media' or 'class'
darkMode: 'media',
theme: {
extend: {},
},
Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import reactRefresh from '@vitejs/plugin-react-refresh'
import react from '@vitejs/plugin-react'

export default defineConfig({
plugins: [reactRefresh()],
plugins: [react()],
root: "./app"
})

0 comments on commit 50b5c65

Please sign in to comment.