mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* move `oxide/crates` to `crates` * ignore `target/` folder * ensure pnpm points to `crates` instead of `oxide/crates` * ensure all paths point to `crates` instead of `oxide/crates` * update `oxide/crates` -> `crates` path in workflows * use correct path in .prettierignore * rename `crates/core` to `crates/oxide` * remove oxide folder * fix test script to run `cargo test` directly
19 lines
413 B
TOML
19 lines
413 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "tailwind-oxide"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
napi = { version = "2.13.1", default-features = false, features = ["napi4"] }
|
|
napi-derive = "2.13.0"
|
|
tailwindcss-oxide = { path = "../oxide" }
|
|
rayon = "1.5.3"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.0.1"
|
|
|