Skip to content

Commit

Permalink
Merge remote-tracking branch 'gold/master' into esbuild-dev-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesTaylor7 committed Nov 10, 2023
2 parents 2ba53b6 + 23697f4 commit 5baf5e5
Show file tree
Hide file tree
Showing 78 changed files with 3,041 additions and 1,172 deletions.
266 changes: 200 additions & 66 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/spago.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: spago-bin
publish:
version: 0.93.17
version: 0.93.18
license: BSD-3-Clause
dependencies:
- aff
Expand Down
21 changes: 21 additions & 0 deletions bin/src/Flags.purs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,20 @@ json =
<> O.help "Format the output as JSON"
)

dot :: Parser Boolean
dot =
O.switch
( O.long "dot"
<> O.help "Format the output as a DOT (GraphViz) graph"
)

topo :: Parser Boolean
topo =
O.switch
( O.long "topo"
<> O.help "Sort the output topologically"
)

latest :: Parser Boolean
latest =
O.switch
Expand Down Expand Up @@ -264,3 +278,10 @@ sourceMaps =
( O.long "source-maps"
<> O.help "Creates a source map for your bundle"
)

depsOnly :: Parser Boolean
depsOnly =
O.switch
( O.long "deps-only"
<> O.help "Build depedencies only"
)
Loading

0 comments on commit 5baf5e5

Please sign in to comment.