Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

Commit

Permalink
refactor: windicss -> tailwindcss, store -> pinia (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobLinCool authored Feb 3, 2022
1 parent 53b9bcd commit 3300e49
Show file tree
Hide file tree
Showing 32 changed files with 757 additions and 398 deletions.
12 changes: 10 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
dist
# Public files
public
.eslintrc.js

# Configurations
.eslintrc.js
tailwind.config.js
postcss.config.js

# Auto generated files
dist
src/auto/**
5 changes: 3 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"useTabs": false,
"trailingComma": "all",
"semi": true,
"singleQuote": false
}
"singleQuote": false,
"plugins": ["./node_modules/prettier-plugin-tailwindcss/dist/index.js"]
}
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["johnsoncodehk.volar", "voorjaar.windicss-intellisense"]
"recommendations": ["johnsoncodehk.volar", "bradlc.vscode-tailwindcss"]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"lint": "eslint ."
},
"dependencies": {
"pinia": "^2.0.11",
"vue": "^3.2.25",
"vue-router": "^4.0.12"
},
Expand All @@ -17,16 +18,18 @@
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-vue": "^2.0.0",
"@vueuse/head": "^0.7.5",
"autoprefixer": "^10.4.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"tailwindcss": "^3.0.18",
"typescript": "^4.4.4",
"unplugin-auto-import": "^0.5.11",
"unplugin-vue-components": "^0.17.14",
"vite": "^2.7.2",
"vite-plugin-pages": "^0.20.0",
"vite-plugin-windicss": "^1.6.3",
"vue-tsc": "^0.29.8",
"windicss": "^3.4.3"
"vue-tsc": "^0.29.8"
}
}
Loading

0 comments on commit 3300e49

Please sign in to comment.