|
| 1 | +{-# LANGUAGE PatternSynonyms #-} |
1 | 2 |
|
2 |
| -module Development.IDE.Graph(module X) where |
| 3 | +module Development.IDE.Graph( |
| 4 | + shake, |
| 5 | + shakeOptions, |
| 6 | + Rules, action, withoutActions, alternatives, priority, versioned, |
| 7 | + Action, traced, |
| 8 | + liftIO, actionOnException, actionFinally, actionBracket, actionCatch, actionRetry, runAfter, |
| 9 | + ShakeException(..), |
| 10 | + -- * Configuration |
| 11 | + ShakeOptions(..), Rebuild(..), Lint(..), Change(..), |
| 12 | + getShakeOptions, getShakeOptionsRules, getHashedShakeVersion, |
| 13 | + getShakeExtra, getShakeExtraRules, addShakeExtra, |
| 14 | + -- ** Command line |
| 15 | + shakeArgs, shakeArgsWith, shakeArgsOptionsWith, shakeOptDescrs, addHelpSuffix, |
| 16 | + -- ** Targets |
| 17 | + getTargets, addTarget, withTargetDocs, withoutTargets, |
| 18 | + -- ** Progress reporting |
| 19 | + Progress(..), progressSimple, progressDisplay, progressTitlebar, progressProgram, getProgress, |
| 20 | + -- ** Verbosity |
| 21 | + Verbosity(..), getVerbosity, putVerbose, putInfo, putWarn, putError, withVerbosity, quietly, |
| 22 | + -- * Running commands |
| 23 | + command, command_, cmd, cmd_, unit, |
| 24 | + Stdout(..), StdoutTrim(..), Stderr(..), Stdouterr(..), Exit(..), Process(..), CmdTime(..), CmdLine(..), FSATrace(..), |
| 25 | + CmdResult, CmdString, CmdOption(..), |
| 26 | + addPath, addEnv, |
| 27 | + -- * Explicit parallelism |
| 28 | + parallel, forP, par, |
| 29 | + -- * Utility functions |
| 30 | + copyFile', copyFileChanged, |
| 31 | + readFile', readFileLines, |
| 32 | + writeFile', writeFileLines, writeFileChanged, |
| 33 | + removeFiles, removeFilesAfter, |
| 34 | + withTempFile, withTempDir, |
| 35 | + withTempFileWithin, withTempDirWithin, |
| 36 | + -- * File rules |
| 37 | + need, want, (%>), (|%>), (?>), phony, (~>), phonys, |
| 38 | + (&%>), (&?>), |
| 39 | + orderOnly, orderOnlyAction, |
| 40 | + FilePattern, (?==), (<//>), filePattern, |
| 41 | + needed, trackRead, trackWrite, trackAllow, |
| 42 | + -- * Directory rules |
| 43 | + doesFileExist, doesDirectoryExist, getDirectoryContents, getDirectoryFiles, getDirectoryDirs, |
| 44 | + getDirectoryFilesIO, |
| 45 | + -- * Environment rules |
| 46 | + getEnv, getEnvWithDefault, getEnvError, |
| 47 | + -- * Oracle rules |
| 48 | + ShakeValue, RuleResult, addOracle, addOracleCache, addOracleHash, askOracle, askOracles, |
| 49 | + -- * Special rules |
| 50 | + alwaysRerun, |
| 51 | + -- * Resources |
| 52 | + Resource, newResource, newResourceIO, withResource, withResources, |
| 53 | + newThrottle, newThrottleIO, |
| 54 | + unsafeExtraThread, |
| 55 | + -- * Cache |
| 56 | + newCache, newCacheIO, |
| 57 | + historyDisable, produces, |
| 58 | + -- * Batching |
| 59 | + needHasChanged, |
| 60 | + resultHasChanged, |
| 61 | + batch, |
| 62 | + reschedule, |
| 63 | + -- * Deprecated |
| 64 | + askOracleWith, |
| 65 | + deprioritize, |
| 66 | + pattern Quiet, pattern Normal, pattern Loud, pattern Chatty, |
| 67 | + putLoud, putNormal, putQuiet |
| 68 | + ) where |
3 | 69 |
|
4 |
| -import Development.Shake as X |
| 70 | +import Development.Shake |
0 commit comments