mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
f37cb701b3
* feat: create babel plugin to handle lazy loading * fix: update typescript CI to also run the tests in the pipelines * doc: update lazy loading component inline documentation * fix: typescript pipeline * fix: update CI typescript test command * fix: prevent duplicate pipelines on PR * feat: create separate vite plugin package * chore: refined lazy fn package * test: add test to lazy fn plugin * feat: update version to v0.1.5
22 lines
443 B
TOML
22 lines
443 B
TOML
[package]
|
|
name = "tuono_lib_macros"
|
|
version = "0.1.5"
|
|
edition = "2021"
|
|
description = "The react/rust fullstack framework"
|
|
homepage = "https://github.com/Valerioageno/tuono"
|
|
readme = "../../README.md"
|
|
license-file = "../../LICENSE.md"
|
|
categories = ["web-programming"]
|
|
include = [
|
|
"src/*.rs",
|
|
"Cargo.toml"
|
|
]
|
|
|
|
[lib]
|
|
crate_type = ["proc-macro"]
|
|
proc-marco = true
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0.59", features = ["full"] }
|
|
quote = "1.0"
|