-
Notifications
You must be signed in to change notification settings - Fork 9
/
extension.go
36 lines (30 loc) · 983 Bytes
/
extension.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package create
import (
"context"
"github.com/spf13/cobra"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/frontend/scaffold"
"namespacelabs.dev/foundation/std/cfg"
)
func newExtensionCmd() *cobra.Command {
var (
targetPkg targetPkg
env cfg.Context
)
return fncobra.
Cmd(&cobra.Command{
Use: "extension [path/to/package]",
Short: "Creates an extension.",
}).
With(fncobra.HardcodeEnv(&env, "dev")).
With(parseTargetPkgWithDeps(&targetPkg, "extension")...).
Do(func(ctx context.Context) error {
if err := scaffold.CreateExtensionScaffold(ctx, targetPkg.Root.ReadWriteFS(), targetPkg.Location); err != nil {
return err
}
return codegenNode(ctx, targetPkg.Root, env, targetPkg.Location)
})
}