Merge branch 'master' into nested-sequence-diagrams
This commit is contained in:
commit
8b845ce285
5 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
#### Features 💸
|
#### Features 🚀
|
||||||
|
|
||||||
- Formatting of d2 scripts is supported on the CLI with the `fmt` subcommand.
|
- Formatting of d2 scripts is supported on the CLI with the `fmt` subcommand.
|
||||||
[#292](https://github.com/terrastruct/d2/pull/292)
|
[#292](https://github.com/terrastruct/d2/pull/292)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#### Features 💸
|
#### Features 🚀
|
||||||
|
|
||||||
#### Improvements 🧹
|
#### Improvements 🧹
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import (
|
||||||
// See implementation of d2plugin-dagre in the ./cmd directory.
|
// See implementation of d2plugin-dagre in the ./cmd directory.
|
||||||
//
|
//
|
||||||
// Also see execPlugin in exec.go for the d2 binary plugin protocol.
|
// Also see execPlugin in exec.go for the d2 binary plugin protocol.
|
||||||
func Serve(p Plugin) func(context.Context, *xmain.State) error {
|
func Serve(p Plugin) xmain.RunFunc {
|
||||||
return func(ctx context.Context, ms *xmain.State) (err error) {
|
return func(ctx context.Context, ms *xmain.State) (err error) {
|
||||||
if len(ms.Opts.Flags.Args()) < 1 {
|
if len(ms.Opts.Flags.Args()) < 1 {
|
||||||
return errors.New("expected first argument to plugin binary to be function name")
|
return errors.New("expected first argument to plugin binary to be function name")
|
||||||
|
|
|
||||||
2
go.mod
generated
2
go.mod
generated
|
|
@ -20,7 +20,7 @@ require (
|
||||||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
|
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
|
||||||
gonum.org/v1/plot v0.12.0
|
gonum.org/v1/plot v0.12.0
|
||||||
nhooyr.io/websocket v1.8.7
|
nhooyr.io/websocket v1.8.7
|
||||||
oss.terrastruct.com/util-go v0.0.0-20221201191904-5edc89ce397b
|
oss.terrastruct.com/util-go v0.0.0-20221201194427-9e805badc3e7
|
||||||
rogchap.com/v8go v0.7.1-0.20221102201510-1f00b5007d95
|
rogchap.com/v8go v0.7.1-0.20221102201510-1f00b5007d95
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
4
go.sum
generated
4
go.sum
generated
|
|
@ -798,8 +798,8 @@ honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9
|
||||||
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
|
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
|
||||||
nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g=
|
nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g=
|
||||||
nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
|
nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
|
||||||
oss.terrastruct.com/util-go v0.0.0-20221201191904-5edc89ce397b h1:o8+5KfZpQyaw7uKcPIdc9HOqVjVDEdsPZpdRV1k0rmc=
|
oss.terrastruct.com/util-go v0.0.0-20221201194427-9e805badc3e7 h1:5nB0zdeI7c6esIT+guwB4PWxKl5dZMCsZE+jrcDCbzc=
|
||||||
oss.terrastruct.com/util-go v0.0.0-20221201191904-5edc89ce397b/go.mod h1:Fwy72FDIOOM4K8F96ScXkxHHppR1CPfUyo9+x9c1PBU=
|
oss.terrastruct.com/util-go v0.0.0-20221201194427-9e805badc3e7/go.mod h1:Fwy72FDIOOM4K8F96ScXkxHHppR1CPfUyo9+x9c1PBU=
|
||||||
rogchap.com/v8go v0.7.1-0.20221102201510-1f00b5007d95 h1:r89YHVIWeQj/A3Nu6462eqARUECJlJkLRk36pfML1xA=
|
rogchap.com/v8go v0.7.1-0.20221102201510-1f00b5007d95 h1:r89YHVIWeQj/A3Nu6462eqARUECJlJkLRk36pfML1xA=
|
||||||
rogchap.com/v8go v0.7.1-0.20221102201510-1f00b5007d95/go.mod h1:MxgP3pL2MW4dpme/72QRs8sgNMmM0pRc8DPhcuLWPAs=
|
rogchap.com/v8go v0.7.1-0.20221102201510-1f00b5007d95/go.mod h1:MxgP3pL2MW4dpme/72QRs8sgNMmM0pRc8DPhcuLWPAs=
|
||||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue