Compare commits

..

10 Commits

Author SHA1 Message Date
Greg Johnston
4f67a47a6f add CI 2025-09-19 17:41:32 -04:00
Greg Johnston
356d69c689 remove unneeded additional subsecond features 2025-09-19 11:40:23 -04:00
Greg Johnston
8a28a30bef clippy 2025-09-19 11:06:27 -04:00
Greg Johnston
d7d2573b3e remove redundant set_interval subsecond integration 2025-09-19 11:00:22 -04:00
Greg Johnston
32d580b69e update lockfile 2025-09-19 10:06:55 -04:00
Greg Johnston
38f5368596 Merge remote-tracking branch 'origin' into subsecond 2025-09-19 10:06:01 -04:00
Greg Johnston
5136d0216f update template and readme 2025-09-19 09:58:48 -04:00
Greg Johnston
9779ca558d allow isolated changes 2025-08-01 16:35:48 -04:00
Greg Johnston
4ed2e1505f this will actually be handled by the general case of render effects updating 2025-08-01 11:28:46 -04:00
Greg Johnston
992f1a3365 wip: exploratory work on subsecond hot-patching integration 2025-07-30 21:48:46 -04:00
5 changed files with 4 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ jobs:
fetch-depth: 0
- name: Get example files that changed
id: changed-files
uses: tj-actions/changed-files@v47
uses: tj-actions/changed-files@v46
with:
files: |
examples/**

View File

@@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
- name: Get source files that changed
id: changed-source
uses: tj-actions/changed-files@v47
uses: tj-actions/changed-files@v46
with:
files_ignore: |
.*/**/*

View File

@@ -88,7 +88,7 @@ jobs:
run: trunk --version
- name: Install Node.js
if: contains(inputs.directory, 'examples')
uses: actions/setup-node@v5
uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4

View File

@@ -95,7 +95,7 @@ Here are some resources for learning more about Leptos:
[`cargo-leptos`](https://github.com/leptos-rs/cargo-leptos) is a build tool that's designed to make it easy to build apps that run on both the client and the server, with seamless integration. The best way to get started with a real Leptos project right now is to use `cargo-leptos` and our starter templates for [Actix](https://github.com/leptos-rs/start) or [Axum](https://github.com/leptos-rs/start-axum).
```bash
cargo install cargo-leptos --locked
cargo install cargo-leptos
cargo leptos new --git https://github.com/leptos-rs/start-axum
cd [your project name]
cargo leptos watch

View File

@@ -1,3 +0,0 @@
[tools]
tailwindcss = "4.1.13"