1
0
Fork 0

upgrade deps

This commit is contained in:
nanxiaobei 2023-08-15 04:41:40 +08:00
parent b8cea6f36b
commit e226e84421
3 changed files with 17 additions and 5 deletions

View File

@ -2,5 +2,5 @@ module.exports = {
singleQuote: true,
// https://github.com/tailwindlabs/prettier-plugin-tailwindcss
plugins: [require('prettier-plugin-tailwindcss')],
plugins: ['prettier-plugin-tailwindcss'],
};

View File

@ -6,7 +6,7 @@
*/
/*
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*/
/*
@ -198,6 +198,10 @@ select,
textarea {
font-family: inherit;
/* 1 */
font-feature-settings: inherit;
/* 1 */
font-variation-settings: inherit;
/* 1 */
font-size: 100%;
/* 1 */
font-weight: inherit;
@ -348,6 +352,14 @@ menu {
padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/

View File

@ -5,10 +5,10 @@
"author": "nanxiaobei <nanxiaobei@gmail.com>",
"license": "MIT",
"scripts": {
"__FOR_DEV__": "please change all `192.168.0.102` to your local IP",
"__FOR_DEV__": "please change all `192.168.0.101` to your local IP",
"dev:tailwind": "pnpm tailwindcss -i ./assets/app.css -o ./assets/main.css --watch",
"dev:server": "hugo server --buildDrafts --watch --minify --disableFastRender --themesDir=../.. --source=exampleSite --baseURL=192.168.0.102 --bind=192.168.0.102 --port=1313",
"dev:open": "open http://192.168.0.102:1313/",
"dev:server": "hugo server --buildDrafts --watch --minify --disableFastRender --themesDir=../.. --source=exampleSite --baseURL=192.168.0.101 --bind=192.168.0.101 --port=1313",
"dev:open": "open http://192.168.0.101:1313/",
"build:go": "cp exampleSite/go.default.mod exampleSite/go.mod",
"build:generate": "hugo --gc --minify --themesDir=../.. --source=exampleSite --config=go.toml,config.toml",
"dev": "killall hugo & pnpm dev:tailwind & pnpm dev:server & pnpm dev:open",