all repos — vite @ c0b82b5ec6f99973d963088f56ca1b237d1743ac

a fast (this time, actually) and minimal static site generator

utils.go (view raw)

 1package main
 2
 3import (
 4	"fmt"
 5	"os"
 6	"strings"
 7)
 8
 9func printMsg(s ...string) {
10	fmt.Println("vite:", strings.Join(s, " "))
11}
12
13func printErr(e error) {
14	fmt.Fprintln(os.Stderr, "error:", e)
15}