1
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Bauke 420c6cd93b
Add serde and serde_json dependencies. 2023-01-04 14:43:46 +01:00
Bauke a4b22db9e4
Switch to shareable configs. 2023-01-03 14:41:55 +01:00
2 changed files with 14 additions and 17 deletions

View File

@ -17,6 +17,11 @@ path = "source/main.rs"
askama = "0.11.1" askama = "0.11.1"
color-eyre = "0.6.2" color-eyre = "0.6.2"
rsass = "0.23.4" rsass = "0.23.4"
serde_json = "1.0.91"
[dependencies.serde]
features = ["derive"]
version = "1.0.152"
[dependencies.userstyles] [dependencies.userstyles]
git = "https://git.bauke.xyz/Bauke/userstyles" git = "https://git.bauke.xyz/Bauke/userstyles"

View File

@ -9,27 +9,19 @@
"modern-normalize": "^1.1.0" "modern-normalize": "^1.1.0"
}, },
"devDependencies": { "devDependencies": {
"stylelint": "^14.12.1", "@bauke/eslint-config": "^0.1.2",
"stylelint-config-standard-scss": "^5.0.0", "@bauke/prettier-config": "^0.1.2",
"xo": "^0.52.3" "@bauke/stylelint-config": "^0.1.2",
"stylelint": "^14.16.1",
"xo": "^0.53.1"
}, },
"prettier": "@bauke/prettier-config",
"stylelint": { "stylelint": {
"extends": [ "extends": "@bauke/stylelint-config"
"stylelint-config-standard-scss"
],
"rules": {
"string-quotes": "single"
}
}, },
"xo": { "xo": {
"pretty": true, "extends": "@bauke/eslint-config",
"globals": [ "prettier": true,
"document",
"window"
],
"rules": {
"capitalized-comments": "off"
},
"space": true "space": true
} }
} }