aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2023-04-08 16:57:23 -0400
committerXe Iaso <me@xeiaso.net>2023-04-08 16:57:48 -0400
commit7f093cbbb722052526aea6103cb3c778bab891ef (patch)
treeb8a0e3bcd12d1ff9825d64990b77c0f86c8877fa
parentbd94db33f00c0d4b6f0704c42c9dd83b8b84f2e0 (diff)
downloadxesite-7f093cbbb722052526aea6103cb3c778bab891ef.tar.xz
xesite-7f093cbbb722052526aea6103cb3c778bab891ef.zip
create Xeact series
Signed-off-by: Xe Iaso <me@xeiaso.net>
-rw-r--r--blog/xeact-0.0.69-2021-11-18.markdown2
-rw-r--r--blog/xeact-0.70.0-useState.markdown2
-rw-r--r--blog/xeact-jsx.markdown2
-rw-r--r--dhall/seriesDescriptions.dhall4
-rw-r--r--flake.nix3
5 files changed, 9 insertions, 4 deletions
diff --git a/blog/xeact-0.0.69-2021-11-18.markdown b/blog/xeact-0.0.69-2021-11-18.markdown
index 34c6215..8b09ccc 100644
--- a/blog/xeact-0.0.69-2021-11-18.markdown
+++ b/blog/xeact-0.0.69-2021-11-18.markdown
@@ -5,7 +5,7 @@ tags:
- javascript
- framework
- satire
- - xeact
+series: xeact
---
[Writing JavaScript is so lame. All the tools require me to do so much bullshit
diff --git a/blog/xeact-0.70.0-useState.markdown b/blog/xeact-0.70.0-useState.markdown
index 2910e11..3961acf 100644
--- a/blog/xeact-0.70.0-useState.markdown
+++ b/blog/xeact-0.70.0-useState.markdown
@@ -4,9 +4,9 @@ date: 2023-04-03
tags:
- jsx
- react
- - xeact
- frontend
- javascript
+series: xeact
---
Xeact continues to dominate the front-end ecosystem. Every facet of
diff --git a/blog/xeact-jsx.markdown b/blog/xeact-jsx.markdown
index d6a1693..91639e8 100644
--- a/blog/xeact-jsx.markdown
+++ b/blog/xeact-jsx.markdown
@@ -2,10 +2,10 @@
title: "Xeact Version 0.69.71: JSX support"
date: 2022-08-17
tags:
- - xeact
- jsx
- frontend
- javascript
+series: xeact
---
<xeblog-hero file="the-magician-anime" prompt="The Magician in the style of an anime as a tarot card"></xeblog-hero>
diff --git a/dhall/seriesDescriptions.dhall b/dhall/seriesDescriptions.dhall
index 9aa62ec..da82512 100644
--- a/dhall/seriesDescriptions.dhall
+++ b/dhall/seriesDescriptions.dhall
@@ -135,6 +135,10 @@ let descriptions
, name = "when-then-zen"
, details = "Meditation information sans bullshit."
}
+ , Desc::{
+ , name = "xeact"
+ , details = "Xeact, the best frontend femtoframework in the galaxy"
+ }
]
let descToMapValue =
diff --git a/flake.nix b/flake.nix
index 62b0cf5..19a411d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -105,6 +105,7 @@
export DENO_DIR="$(pwd)/.deno2nix"
mkdir -p $DENO_DIR
ln -s "${pkgs.deno2nix.internal.mkDepsLink ./src/frontend/deno.lock}" $(deno info --json | jq -r .modulesCache)
+ ${pkgs.tree}/bin/tree "${pkgs.deno2nix.internal.mkDepsLink ./src/frontend/deno.lock}"
export MINIFY=yes
mkdir -p dist
@@ -112,7 +113,7 @@
pushd $(pwd)
cd $src
- deno run -A ./build.ts
+ deno run -A ./build.ts **/*.tsx
popd
'';