forked from meiersi/blaze-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblaze-react.cabal
86 lines (76 loc) · 2.89 KB
/
blaze-react.cabal
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: blaze-react
version: 0.1.0.0
synopsis: Experimental ReactJS bindings for GHCJS.
description: ReactJS is a library by Facebook that supports
efficiently updating the DOM in a pure fashion using a
virtual DOM as an intermediary.
The bindings expose an API based on blaze-html for
rendering and simple state machines for managing
application updates.
license: MIT
license-file: LICENSE
author: Simon Meier, Alex Sayers
maintainer: iridcode@gmail
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: reactjs-bindings/lib.require.js
reactjs-bindings/LICENSE
README.markdown
flag build-example
description: build the example program
default: False
manual: True
library
js-sources: jsbits/global-react.js
reactjs-bindings/lib.js
ghcjs-options: -O -Wall
exposed-modules: Text.Blaze
Text.Blaze.Event
Text.Blaze.Event.Charcode
Text.Blaze.Event.Keycode
Text.Blaze.Html5
Text.Blaze.Html5.Attributes
Text.Blaze.Svg
Text.Blaze.Svg.Attributes
Text.Blaze.Renderer.ReactJS
Text.Blaze.Renderer.String
Text.Blaze.Internal
Text.Blaze.Event.Internal
Blaze.React
Blaze.React.Run.ReactJS
Blaze.React.Examples.Clock
Blaze.React.Examples.EventTest
Blaze.React.Examples.MultiUser
Blaze.React.Examples.RoutingTest
Blaze.React.Examples.TabbedApps
Blaze.React.Examples.TimeMachine
Blaze.React.Examples.Todo
build-depends: base >=4.11
, bytestring
, dlist
, either
, ghcjs-base
, ghcjs-ffiqq
, ghcjs-prim
, hashable
, lens
, mtl
, pretty-show
, text
, transformers
, time
, unordered-containers
, void
hs-source-dirs: src
default-language: Haskell2010
executable todomvc
if !flag(build-example)
buildable: False
Main-Is: todo-main.hs
cpp-options: -DGHCJS_NO_CATCH_MAINLOOP
Default-Language: Haskell2010
hs-source-dirs: todomvc
Build-Depends: base >= 4 && < 5,
blaze-react
ghcjs-Options: -O -Wall