packages feed

pms-application-service 0.0.2.0 → 0.0.3.0

raw patch · 4 files changed

+10/−6 lines, 4 files

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for pms-application-service +## 0.0.3.0 -- 2025-06-22++* Changed scriptsDir to toolsDir.+ ## 0.0.2.0 -- 2025-06-15  * Added expected prompt string for use with `expect`.
pms-application-service.cabal view
@@ -20,7 +20,7 @@ -- PVP summary:     +-+------- breaking API changes --                  | | +----- non-breaking API additions --                  | | | +--- code changes with no API change-version:            0.0.2.0+version:            0.0.3.0  -- A short (one-line) description of the package. synopsis:           pms-application-service@@ -57,7 +57,7 @@  library     -- Import common warning flags.-    ghc-options: -Wall -Wno-x-partial+    ghc-options: -Wall -threaded -Wno-x-partial      -- Modules exported by the library.     exposed-modules:  PMS.Application.Service.DM.Type,@@ -97,7 +97,7 @@  test-suite pms-application-service-test     -- Import common warning flags.-    ghc-options: -Wall -Wno-x-partial+    ghc-options: -Wall -threaded -Wno-x-partial      -- Base language which the package is written in.     default-language: GHC2021
src/PMS/Application/Service/App/Control.hs view
@@ -34,7 +34,7 @@   let domDat = defDom {                DM._logDirDomainData   = conf^.logDirConfigData              , DM._logLevelDomainData = conf^.logLevelConfigData-             , DM._scriptsDirDomainData = conf^.scriptsDirConfigData+             , DM._toolsDirDomainData = conf^.toolsDirConfigData              , DM._promptsDomainData = conf^.promptsConfigData              }       appDat = def {
src/PMS/Application/Service/DM/Type.hs view
@@ -41,7 +41,7 @@ data ConfigData = ConfigData {     _logDirConfigData :: Maybe FilePath   , _logLevelConfigData :: LogLevel-  , _scriptsDirConfigData :: FilePath+  , _toolsDirConfigData :: FilePath   , _promptsConfigData :: [String]   } deriving (Show, Read, Eq) @@ -56,7 +56,7 @@   def = ConfigData {         _logDirConfigData  = Nothing       , _logLevelConfigData = LevelDebug-      , _scriptsDirConfigData = "./scripts"+      , _toolsDirConfigData = "./tools"       , _promptsConfigData = [           "ghci>"         , "]#"