File tree Expand file tree Collapse file tree 4 files changed +497
-2
lines changed
plugins/hls-render-plugin/src/Ide/Plugin Expand file tree Collapse file tree 4 files changed +497
-2
lines changed Original file line number Diff line number Diff line change @@ -517,6 +517,60 @@ test-suite hls-eval-plugin-tests
517
517
, lsp-types
518
518
, text
519
519
520
+ -----------------------------
521
+ -- render plugin
522
+ -----------------------------
523
+
524
+ flag render
525
+ description : Enable render plugin
526
+ default : True
527
+ manual : True
528
+
529
+ common render
530
+ if flag(render)
531
+ build-depends : haskell-language-server :hls-render-plugin
532
+ cpp-options : -Dhls_render
533
+
534
+ library hls-render-plugin
535
+ import : defaults, pedantic, warnings
536
+ if !flag(render)
537
+ buildable : False
538
+ exposed-modules :
539
+ Ide.Plugin.Render
540
+ other-modules :
541
+ Ide.Plugin.Render.Config
542
+ hs-source-dirs : plugins/hls-render-plugin/src
543
+
544
+ build-depends :
545
+ , aeson
546
+ , bytestring
547
+ , containers
548
+ , deepseq
549
+ , Diff ^>= 0.5
550
+ , dlist
551
+ , extra
552
+ , filepath
553
+ , ghc
554
+ , ghc-boot-th
555
+ , ghcide == 2.10.0.0
556
+ , hls-graph
557
+ , hls-plugin-api == 2.10.0.0
558
+ , lens
559
+ , lsp
560
+ , lsp-types
561
+ , megaparsec >= 9.0
562
+ , mtl
563
+ , parser-combinators >= 1.2
564
+ , text
565
+ , text-rope
566
+ , transformers
567
+ , unliftio
568
+ , safe-exceptions
569
+ , unordered-containers
570
+
571
+ default-extensions :
572
+ DataKinds
573
+
520
574
-----------------------------
521
575
-- import lens plugin
522
576
-----------------------------
@@ -1836,6 +1890,7 @@ library
1836
1890
, changeTypeSignature
1837
1891
, class
1838
1892
, eval
1893
+ , render
1839
1894
, importLens
1840
1895
, rename
1841
1896
, retrie
You can’t perform that action at this time.
0 commit comments