packages feed

lucid-cdn 0.2.1.0 → 0.2.2.0

raw patch · 3 files changed

+14/−1 lines, 3 files

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for lucid-cdn +## v0.2.2.0++* Add tailwind v1.9.2+ ## v0.2.1.0  * Add modernizr v2.8.3
lucid-cdn.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           lucid-cdn-version:        0.2.1.0+version:        0.2.2.0 synopsis:       Curated list of CDN imports for lucid. description:    Repository of common CDN imports for lucid. Please open a pull request to add new libraries. category:       Web
src/Lucid/CDN.hs view
@@ -18,6 +18,7 @@ , modernizr_2_8_3 , popper_2_4_4 , sudoslider_3_5_0+, tailwind_1_9_2 ) where  import Lucid@@ -97,3 +98,11 @@     src_ "https://cdn.jsdelivr.net/npm/sudoslider@3.5.0/js/jquery.sudoSlider.min.js"   , integrity_ "sha256-jhgyTeC6IL/fR5R777vflEtlTg9lkxcPjfTVKC0AK2c="   , crossorigin_ "anonymous"] _blank++-- Tailwind V1.9.2+tailwind_1_9_2 :: Monad m => HtmlT m ()+tailwind_1_9_2 = link_ [+    rel_ "stylesheet"+  , src_ "https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.9.2/tailwind.min.css"+  , integrity_ "sha512-l7qZAq1JcXdHei6h2z8h8sMe3NbMrmowhOl+QkP3UhifPpCW2MC4M0i26Y8wYpbz1xD9t61MLT9L1N773dzlOA=="+  , crossorigin_ "anonymous"]