diff options
author | Taym Haddadi <haddadi.taym@gmail.com> | 2024-10-30 12:12:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 11:12:20 +0000 |
commit | ee68dc2589283d9ef37b578b83258d421ec29bcc (patch) | |
tree | 91d7eea5a80652d14ce1e26a635d07bf94b8395a /components/script/lib.rs | |
parent | bac1101163a436096fe0b71bed79094658bba3b2 (diff) | |
download | servo-ee68dc2589283d9ef37b578b83258d421ec29bcc.tar.gz servo-ee68dc2589283d9ef37b578b83258d421ec29bcc.zip |
Support persisting unminified external stylesheets (#33919)
* Support local tweaking of external stylesheets
Signed-off-by: Taym <haddadi.taym@gmail.com>
* Remove duplicated code between unminify_css and unminify_js
Signed-off-by: Taym <haddadi.taym@gmail.com>
* Add License
Signed-off-by: Taym <haddadi.taym@gmail.com>
* Use js-beautify instead of npx
Signed-off-by: Taym <haddadi.taym@gmail.com>
* Fix clippy warning
Signed-off-by: Taym <haddadi.taym@gmail.com>
---------
Signed-off-by: Taym <haddadi.taym@gmail.com>
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index ca70f062e64..043f3fe2b4e 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -94,6 +94,8 @@ mod webdriver_handlers; #[warn(deprecated)] mod window_named_properties; +mod unminify; + mod links; pub use init::init; |