-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpurescript-bundle-fast.cabal
More file actions
38 lines (34 loc) · 1.29 KB
/
purescript-bundle-fast.cabal
File metadata and controls
38 lines (34 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: purescript-bundle-fast
version: 0.1.0.1
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