Merge branch 'master' of github.com:spotify/backstage into ben/listing-components

* 'master' of github.com:spotify/backstage: (25 commits)
  backend/scaffolder: fix build
  backend,proto: added builds service that calls out to github api
  proto: update README
  proto: switch to grpc-web plugin + ship protoc plugin binary, because meh
  feat: returning correct list of included facts
  refactor: Protobuf messages
  No separate login link anymore
  add failing scenario for getting entity
  Persist login (for now - due to constant page reloads)
  feat: add set fact endpoint
  Mark package as private
  frontend: remove gen-proto script, replaced by proto package
  Updated docs
  Fixed prototool
  Added generated files
  Added service=grpc-web flag
  Added protobuf-gen-ts to prototool.yaml
  Ran yarn install
  Added a @backstage/protobuf-definitions package
  frontend/core: simplify plugin output handling
  ...
This commit is contained in:
blam
2020-02-06 14:48:08 +01:00
81 changed files with 10423 additions and 367 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"google.golang.org/grpc/status"
identity "github.com/spotify/backstage/backend/proto/identity/v1"
pb "github.com/spotify/backstage/proto/scaffolder/v1"
pb "github.com/spotify/backstage/backend/proto/scaffolder/v1"
"github.com/spotify/backstage/scaffolder/fs"
"github.com/spotify/backstage/scaffolder/remote"
"github.com/spotify/backstage/scaffolder/repository"
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"log"
"net"
pb "github.com/spotify/backstage/proto/scaffolder/v1"
pb "github.com/spotify/backstage/backend/proto/scaffolder/v1"
"github.com/spotify/backstage/scaffolder/app"
"google.golang.org/grpc"
)