We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd85ee commit 0f72765Copy full SHA for 0f72765
src/Compiler/Outline.gren
@@ -5,6 +5,7 @@ module Compiler.Outline exposing
5
, VersionConstraint(..)
6
, Exposed (..)
7
--
8
+ , defaultSummary
9
, findSourceFiles
10
11
, jsonDecoder
@@ -66,6 +67,11 @@ type VersionConstraint a
66
67
| LocalPath Path
68
69
70
+defaultSummary : String
71
+defaultSummary =
72
+ "helpful summary of your project, less than 80 characters"
73
+
74
75
-- TODO: Ignore hidden directories
76
-- More info: https://github.com/gren-lang/compiler/pull/287
77
findSourceFiles : FileSystem.Permission -> Outline -> Path -> Task FileSystem.Error (Array { moduleName : String, source : String })
0 commit comments