restructure project, add claudemd
This commit is contained in:
18
go/cmd/bundle/main.go
Normal file
18
go/cmd/bundle/main.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package main
|
||||
|
||||
// Thin CLI wrapper around kjol/bundler. The bundler wires its own Go-native
|
||||
// Solid JSX compiler (see bundler.Build), so this wrapper carries no build logic.
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"kjol/bundler"
|
||||
)
|
||||
|
||||
func main() {
|
||||
if err := bundler.Build(); err != nil {
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user