编译时生成components.js

This commit is contained in:
GoEdgeLab
2021-11-22 12:08:53 +08:00
parent 8924f76871
commit dd3ed43805
12 changed files with 12210 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package gen
import "testing"
func TestGenerate(t *testing.T) {
err := Generate()
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}