filterbar wip

This commit is contained in:
Robin Appelman 2023-04-11 23:06:48 +02:00
commit e5c9aeb7fe
15 changed files with 1905 additions and 420 deletions

View 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}")
}

View file

@ -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(),