name:                purescript-bundle-fast
version:             0.1.0.0
synopsis:            A fast alternative to Purescript's `psc-bundle` to be used during development
description:         See README.md
homepage:            https://github.com/bitc/purescript-bundle-fast
bug-reports:         https://github.com/bitc/purescript-bundle-fast/issues
license:             MIT
license-file:        LICENSE
author:              Bit Connor
maintainer:          mutantlemon@gmail.com
-- copyright:           
category:            Development
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            git://github.com/bitc/purescript-bundle-fast.git

executable psc-bundle-fast
  main-is:             Main.hs
  other-modules:       ProcessModule,
                       ProcessRootModule
  other-extensions:    CPP, OverloadedStrings, RecordWildCards

  build-depends:       base ==4.*,
                       containers,
                       directory,
                       filepath,
                       optparse-applicative,
                       text,
                       vector

  hs-source-dirs:      src
  cpp-options:         -DCABAL
  ghc-options:         -Wall -O2
  default-language:    Haskell2010