This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val versionLines = mutableListOf<String>() | |
val libs = mutableMapOf<String, List<String>>() | |
val plugs = mutableMapOf<String, List<String>>() | |
versionCatalogs.forEach { catalog -> | |
// map of version - alias | needed to guess the aliases used | |
val versions = catalog.versionAliases.associate { alias -> | |
val version = catalog.findVersion(alias) | |
version.get().displayName to alias.replace(".", "-") | |
} | |
versionLines += versions.map { (value, key) -> "$key = \"$value\"" }.joinToString("\n").trim('\n') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:testing-slim | |
RUN apt update && apt install -y firefox-esr curl | |
ARG user=hackmenot | |
ARG group=hackmenot | |
ARG uid=1001 | |
ARG gid=1001 | |
RUN groupadd -g ${gid} ${group} | |
RUN useradd -u ${uid} -g ${group} -s /bin/sh -m ${user} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { Theme } from '@skeletonlabs/skeleton/themes'; | |
const theme = { | |
"name": "theme", | |
"properties": { | |
"--type-scale-factor": "1.067", | |
"--type-scale-1": "calc(0.75rem * var(--type-scale-factor))", | |
"--type-scale-2": "calc(0.875rem * var(--type-scale-factor))", | |
"--type-scale-3": "calc(1rem * var(--type-scale-factor))", | |
"--type-scale-4": "calc(1.125rem * var(--type-scale-factor))", |
OlderNewer