mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Make pkg/build its own module, remove unused Grafana modules in go.mod/go.sum * fix go.work format * log errors on file close errors
34 lines
662 B
Go
34 lines
662 B
Go
package codegen
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
type PackageJSON struct {
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
// Opens the package.json file in the provided directory and returns a struct that represents its contents
|
|
func OpenPackageJSON(dir string) (PackageJSON, error) {
|
|
f, err := os.Open(filepath.Clean(dir + "/package.json"))
|
|
if err != nil {
|
|
return PackageJSON{}, err
|
|
}
|
|
|
|
defer func() {
|
|
if err := f.Close(); err != nil {
|
|
log.Println("error closing package.json", err)
|
|
}
|
|
}()
|
|
|
|
jsonObj := PackageJSON{}
|
|
if err := json.NewDecoder(f).Decode(&jsonObj); err != nil {
|
|
return PackageJSON{}, err
|
|
}
|
|
|
|
return jsonObj, nil
|
|
}
|