mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-11-10 10:29:12 +03:00
046da3caca
https://github.com/hasura/graphql-engine-mono/pull/1983 GitOrigin-RevId: 91069bd5d1f9c5a166eae2317cf4435220b472b0
22 lines
726 B
Plaintext
22 lines
726 B
Plaintext
-- A project configuration for general-purpose development: this builds documentation for
|
|
-- dependencies and disables optimizations for graphql-engine to improve compilation times.
|
|
--
|
|
-- To enable this, you can do:
|
|
-- $ ln -s cabal.project.dev cabal.project.local
|
|
-- Or, if you want to customize the configuration:
|
|
-- $ cp cabal.project.dev cabal.project.local
|
|
|
|
with-compiler: ghc-8.10.2
|
|
|
|
package *
|
|
documentation: true
|
|
|
|
package graphql-engine
|
|
-- NOTE: this seems to work so long as there is no 'ghc-options: -O2' in the cabal file,
|
|
-- but new-build will report 'Build profile: -O1' for some reason.
|
|
-- See:https://github.com/haskell/cabal/issues/6221
|
|
optimization: 0
|
|
documentation: false
|
|
flags: +developer
|
|
|