mirror of
https://codeberg.org/demostf/frontend.git
synced 2026-06-03 18:24:12 +02:00
filterbar wip
This commit is contained in:
parent
10ea8ddcbc
commit
e5c9aeb7fe
15 changed files with 1905 additions and 420 deletions
11
build/src/bundle_script.rs
Normal file
11
build/src/bundle_script.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use std::env::args;
|
||||
|
||||
mod script;
|
||||
|
||||
fn main() {
|
||||
tracing_subscriber::fmt::init();
|
||||
|
||||
let path = args().skip(1).next().unwrap();
|
||||
let output = script::bundle_script(&path);
|
||||
// println!("{output}")
|
||||
}
|
||||
|
|
@ -156,7 +156,7 @@ impl Load for Loader {
|
|||
.fold_with(&mut strip(top_level_mark))
|
||||
.fold_with(&mut as_folder(TransformVisitor::new(
|
||||
jsx_dom_expressions::config::Config {
|
||||
module_name: "solid-js/web/dist/web.js".to_string(),
|
||||
module_name: "solid-js/web".to_string(),
|
||||
builtins: vec![
|
||||
"For".into(),
|
||||
"Show".into(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue