File tree 2 files changed +8
-2
lines changed
src/Development/IDE/Graph/Internal 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ bug-reports: https://github.com/haskell/haskell-language-server/issues
10
10
license : Apache-2.0
11
11
license-file : LICENSE
12
12
author : The Haskell IDE Team
13
- maintainer : alan.zimm@gmail.com
13
+ maintainer : The Haskell IDE Team
14
14
copyright : The Haskell IDE Team
15
15
category : Development
16
16
build-type : Simple
Original file line number Diff line number Diff line change @@ -20,8 +20,14 @@ import Data.FileEmbed
20
20
21
21
htmlDataFiles :: [(FilePath , BS. ByteString )]
22
22
htmlDataFiles =
23
- [ (" profile.html" , $ (embedFile " html/profile.html" ))
23
+ [
24
+ #ifdef __GHCIDE__
25
+ (" profile.html" , $ (embedFile " hls-graph/html/profile.html" ))
26
+ , (" shake.js" , $ (embedFile " hls-graph/html/shake.js" ))
27
+ #else
28
+ (" profile.html" , $ (embedFile " html/profile.html" ))
24
29
, (" shake.js" , $ (embedFile " html/shake.js" ))
30
+ #endif
25
31
]
26
32
27
33
readDataFileHTML :: FilePath -> IO LBS. ByteString
You can’t perform that action at this time.
0 commit comments