blob: 93e76b966ba2250c7e9de625880c5099ca245c42 [file] [log] [blame]
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Command static compiles TypeScript files into minified
// JavaScript files and creates linked sourcemaps.
package main
import (
"log"
"golang.org/x/pkgsite/internal/static"
)
func main() {
_, err := static.Build(static.Config{EntryPoint: "static/frontend", Bundle: true})
if err != nil {
log.Fatal(err)
}
_, err = static.Build(static.Config{EntryPoint: "static/worker", Bundle: true})
if err != nil {
log.Fatal(err)
}
_, err = static.Build(static.Config{EntryPoint: "static/shared"})
if err != nil {
log.Fatal(err)
}
}