packages feed

autoexporter 0.1.2 → 0.1.4

raw patch · 4 files changed

+73/−33 lines, 4 files

Files

README.md view
@@ -3,7 +3,7 @@ Autoexporter automatically re-exports Haskell modules.  [![Version badge][]][version]-[![Build badge]][build]+[![Build badge][]][build]  -   [Install](#install) -   [Use](#use)@@ -71,8 +71,8 @@         this as well.  [Autoexporter]: https://github.com/tfausak/autoexporter-[Version badge]: https://img.shields.io/hackage/v/autoexporter.svg?label=version-[version]: https://hackage.haskell.org/package/autoexporter+[Version badge]: https://www.stackage.org/package/autoexporter/badge/nightly?label=version+[version]: https://www.stackage.org/package/autoexporter [Build badge]: https://travis-ci.org/tfausak/autoexporter.svg?branch=master [build]: https://travis-ci.org/tfausak/autoexporter [Stack]: http://haskellstack.org
autoexporter.cabal view
@@ -1,39 +1,48 @@-name: autoexporter-version: 0.1.2-cabal-version: >=1.10-build-type: Simple-license: MIT-license-file: LICENSE.md-maintainer: Taylor Fausak-synopsis: Automatically re-export modules.-description:-    Autoexporter automatically re-exports modules.-category: Utility+-- This file has been generated from package.yaml by hpack version 0.9.0.+--+-- see: https://github.com/sol/hpack++name:           autoexporter+version:        0.1.4+synopsis:       Automatically re-export modules.+description:    Autoexporter automatically re-exports modules.+category:       Utility+homepage:       https://github.com/tfausak/autoexporter#readme+bug-reports:    https://github.com/tfausak/autoexporter/issues+maintainer:     Taylor Fausak+license:        MIT+build-type:     Simple+cabal-version:  >= 1.10+ extra-source-files:     CHANGELOG.md+    LICENSE.md+    package.yaml     README.md     stack.yaml  source-repository head-    type: git-    location: https://github.com/tfausak/autoexporter+  type: git+  location: https://github.com/tfausak/autoexporter  library-    exposed-modules:-        Autoexporter-    build-depends:-        base >=4.7 && <4.9,-        directory >=1.2 && <1.3,-        filepath >=1.3 && <1.5-    default-language: Haskell2010-    hs-source-dirs: library-    ghc-options: -Wall+  hs-source-dirs:+      library+  ghc-options: -Wall+  build-depends:+      base >=4.7 && <4.9+    , directory >=1.2 && <1.3+    , filepath >=1.3 && <1.5+  exposed-modules:+      Autoexporter+  default-language: Haskell2010  executable autoexporter-    main-is: Main.hs-    build-depends:-        base -any,-        autoexporter -any-    default-language: Haskell2010-    hs-source-dirs: executable-    ghc-options: -Wall+  main-is: Main.hs+  hs-source-dirs:+      executable+  ghc-options: -Wall+  build-depends:+      base+    , autoexporter+  default-language: Haskell2010
+ package.yaml view
@@ -0,0 +1,29 @@+category: Utility+description: Autoexporter automatically re-exports modules.+executables:+  autoexporter:+    dependencies:+    - base+    - autoexporter+    main: Main.hs+    source-dirs: executable+extra-source-files:+- CHANGELOG.md+- LICENSE.md+- package.yaml+- README.md+- stack.yaml+ghc-options:+- -Wall+github: tfausak/autoexporter+library:+  dependencies:+  - base >=4.7 && <4.9+  - directory >=1.2 && <1.3+  - filepath >=1.3 && <1.5+  source-dirs: library+license: MIT+maintainer: Taylor Fausak+name: autoexporter+synopsis: Automatically re-export modules.+version: '0.1.4'
stack.yaml view
@@ -1,1 +1,3 @@-resolver: lts-5.3+install-ghc: true+require-stack-version: ! '>=1.0.4'+resolver: lts-5.8