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 4008315 commit cf17094Copy full SHA for cf17094
cmd/packaging/packaging.go
@@ -97,6 +97,7 @@ var templateData map[string]string
97
var once sync.Once
98
99
var (
100
+ // TODO: these all need documentation
101
projectName string
102
version string
103
release string
@@ -110,6 +111,7 @@ var (
110
111
license string
112
)
113
114
+// TODO: it doesn't make sense to have a global "once" function as method on packagingTask
115
func (t *packagingTask) initData(fullVersion string) map[string]string {
116
once.Do(func() {
117
projectName = pubspec.GetPubSpec().Name
0 commit comments