-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved IHP.ServerSideComponent.* to ihp-ssc package
- Loading branch information
1 parent
c5301cf
commit 50fbe02
Showing
11 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ mkDerivation, ihp, lib, aeson, megaparsec, bytestring, wai, websockets, ihp-hsx, base, string-conversions, basic-prelude, text, blaze-html, attoparsec }: | ||
mkDerivation { | ||
pname = "ihp-ssc"; | ||
version = "1.3.0"; | ||
src = ./../../ihp-ssc; | ||
libraryHaskellDepends = [ ihp aeson megaparsec bytestring wai websockets ihp-hsx base string-conversions basic-prelude text blaze-html attoparsec ]; | ||
description = "Server Side Components for IHP"; | ||
license = lib.licenses.mit; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
cabal-version: 2.2 | ||
name: ihp-ssc | ||
version: 1.3.0 | ||
synopsis: Server Side Components for IHP | ||
description: IHP Server-Side Components provide a toolkit for building interactive client-side functionality without needing to write too much JavaScript. | ||
license: NONE | ||
author: digitally induced GmbH | ||
maintainer: [email protected] | ||
-- copyright: | ||
-- category: | ||
build-type: Simple | ||
|
||
library | ||
default-language: Haskell2010 | ||
default-extensions: | ||
OverloadedStrings | ||
, NoImplicitPrelude | ||
, ImplicitParams | ||
, Rank2Types | ||
, NamedFieldPuns | ||
, TypeSynonymInstances | ||
, FlexibleInstances | ||
, DisambiguateRecordFields | ||
, DuplicateRecordFields | ||
, OverloadedLabels | ||
, FlexibleContexts | ||
, DataKinds | ||
, QuasiQuotes | ||
, TypeFamilies | ||
, PackageImports | ||
, ScopedTypeVariables | ||
, RecordWildCards | ||
, TypeApplications | ||
, DataKinds | ||
, InstanceSigs | ||
, DeriveGeneric | ||
, MultiParamTypeClasses | ||
, TypeOperators | ||
, DeriveDataTypeable | ||
, DefaultSignatures | ||
, BangPatterns | ||
, FunctionalDependencies | ||
, PartialTypeSignatures | ||
, BlockArguments | ||
, LambdaCase | ||
, StandaloneDeriving | ||
, TemplateHaskell | ||
, OverloadedRecordDot | ||
hs-source-dirs: . | ||
build-depends: ihp, aeson, megaparsec, bytestring, wai, websockets, ihp-hsx, base, string-conversions, basic-prelude, text, blaze-html, attoparsec | ||
exposed-modules: | ||
IHP.ServerSideComponent.Types | ||
, IHP.ServerSideComponent.ViewFunctions | ||
, IHP.ServerSideComponent.RouterFunctions | ||
, IHP.ServerSideComponent.ControllerFunctions | ||
, IHP.ServerSideComponent.Controller.ComponentsController | ||
, IHP.ServerSideComponent.HtmlDiff | ||
, IHP.ServerSideComponent.HtmlParser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters