Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 13a006d

Browse files
committed
Added htmx #4192
1 parent a616eba commit 13a006d

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2094,6 +2094,17 @@
20942094
"datasourceTemplate": "github-releases",
20952095
"extractVersionTemplate": "^v(?<version>.+?)$"
20962096
},
2097+
{
2098+
"fileMatch": [
2099+
"^tools/htmx/manifest.yaml$"
2100+
],
2101+
"matchStrings": [
2102+
"version: \"?(?<currentValue>.*?)\"?\\n"
2103+
],
2104+
"depNameTemplate": "bigskysoftware/htmx",
2105+
"datasourceTemplate": "github-releases",
2106+
"extractVersionTemplate": "^v(?<version>.+?)$"
2107+
},
20972108
{
20982109
"fileMatch": [
20992110
"^tools/httpx/manifest.yaml$"

tools/htmx/Dockerfile.template

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#syntax=docker/dockerfile:1.5.2
2+
3+
ARG ref=main
4+
FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5+
6+
ARG name
7+
ARG version
8+
9+
RUN <<EOF
10+
mkdir -p "${prefix}${target}/share/htmx"
11+
curl --silent --location --fail --output "${prefix}${target}/share/htmx/htmx.min.js" \
12+
"https://github.com/bigskysoftware/htmx/releases/download/v${version}/htmx.min.js"
13+
EOF

tools/htmx/manifest.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: htmx
2+
version: "1.8.5"
3+
binary: false
4+
check: "" # No binary
5+
tags:
6+
- lang/javascript
7+
homepage: https://github.com/bigskysoftware/htmx
8+
description: High power tools for HTML
9+
renovate:
10+
datasource: github-releases
11+
package: bigskysoftware/htmx
12+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)