From a0e5c27cda78814a027c0c6d3ed4523a74e1127f Mon Sep 17 00:00:00 2001 From: 1computer1 Date: Fri, 19 Jun 2020 09:37:41 -0400 Subject: [PATCH] meta: add hie.yaml files for others to use --- hie.yaml.cbl | 9 +++++++++ hie.yaml.stack | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 hie.yaml.cbl create mode 100644 hie.yaml.stack diff --git a/hie.yaml.cbl b/hie.yaml.cbl new file mode 100644 index 0000000..c354317 --- /dev/null +++ b/hie.yaml.cbl @@ -0,0 +1,9 @@ +# For use with Haskell IDE Engine or Haskell Language Server using cabal. +# Copy this file over to 'hie.yaml' to use. + +cradle: + cabal: + - path: "./src" + component: "lib:myriad" + - path: "./app" + component: "myriad:exe:myriad" diff --git a/hie.yaml.stack b/hie.yaml.stack new file mode 100644 index 0000000..f7cfb3a --- /dev/null +++ b/hie.yaml.stack @@ -0,0 +1,9 @@ +# For use with Haskell IDE Engine or Haskell Language Server using stack. +# Copy this file over to 'hie.yaml' to use. + +cradle: + stack: + - path: "./src" + component: "myriad:lib" + - path: "./app" + component: "myriad:exe:myriad"