├── .ci └── stack-8.0.yaml ├── .circleci └── config.yml ├── .cirrus.yml ├── .github └── workflows │ └── packcheck.yml ├── .packcheck.ignore ├── Changelog.md ├── LICENSE ├── MAINTAINING.md ├── README.md ├── appveyor.yml ├── bench └── Main.hs ├── cabal.project ├── cabal.project.coveralls ├── cabal.project.ghc-head ├── packcheck-remote.sh ├── packcheck-safe.sh ├── packcheck.cabal ├── packcheck.sh ├── src └── Hello.hs ├── stack.yaml └── test └── Main.hs /.ci/stack-8.0.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-9.20 2 | packages: 3 | - '.' 4 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/workflows/packcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/.github/workflows/packcheck.yml -------------------------------------------------------------------------------- /.packcheck.ignore: -------------------------------------------------------------------------------- 1 | .packcheck.ignore 2 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/MAINTAINING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bench/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/bench/Main.hs -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/cabal.project -------------------------------------------------------------------------------- /cabal.project.coveralls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/cabal.project.coveralls -------------------------------------------------------------------------------- /cabal.project.ghc-head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/cabal.project.ghc-head -------------------------------------------------------------------------------- /packcheck-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/packcheck-remote.sh -------------------------------------------------------------------------------- /packcheck-safe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/packcheck-safe.sh -------------------------------------------------------------------------------- /packcheck.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/packcheck.cabal -------------------------------------------------------------------------------- /packcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/packcheck.sh -------------------------------------------------------------------------------- /src/Hello.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/src/Hello.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-23.9 2 | packages: 3 | - '.' 4 | -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composewell/packcheck/HEAD/test/Main.hs --------------------------------------------------------------------------------