slight enhancements for the user agent stylesheet slightcss.devins.page
css stylesheet framework lightweight
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: wisp.place deploy workflow

+27 -28
+3 -13
.tangled/workflows/wisp-deploy.yaml
··· 1 1 when: 2 2 - event: ["push"] 3 3 branch: ["main"] 4 - - event: ["manual"] 5 4 6 5 engine: "nixery" 7 - 8 - clone: 9 - skip: false 10 - depth: 1 11 - submodules: false 12 - 13 6 dependencies: 14 - nixpkgs: 15 - - coreutils 16 - - curl 7 + nixpkgs: [pnpm, nodejs, coreutils, curl, glibc] 17 8 18 9 environment: 19 - SITE_PATH: "." 10 + SITE_PATH: "./" 20 11 SITE_NAME: "slightcss.devins.page" 21 12 WISP_HANDLE: "devins.page" 22 13 ··· 25 16 command: | 26 17 curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 27 18 chmod +x wisp-cli 28 - ./wisp-cli deploy \ 29 - "$WISP_HANDLE" \ 19 + ./wisp-cli deploy "$WISP_HANDLE" \ 30 20 --path "$SITE_PATH" \ 31 21 --site "$SITE_NAME" \ 32 22 --password "$WISP_APP_PASSWORD"
-15
bun.lock
··· 1 - { 2 - "lockfileVersion": 1, 3 - "configVersion": 0, 4 - "workspaces": { 5 - "": { 6 - "name": "@intergrav/slight.css", 7 - "devDependencies": { 8 - "prettier": "latest", 9 - }, 10 - }, 11 - }, 12 - "packages": { 13 - "prettier": ["prettier@3.8.1", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg=="], 14 - } 15 - }
+24
pnpm-lock.yaml
··· 1 + lockfileVersion: "9.0" 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + .: 9 + devDependencies: 10 + prettier: 11 + specifier: ^3.8.1 12 + version: 3.8.1 13 + 14 + packages: 15 + prettier@3.8.1: 16 + resolution: 17 + { 18 + integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==, 19 + } 20 + engines: { node: ">=14" } 21 + hasBin: true 22 + 23 + snapshots: 24 + prettier@3.8.1: {}