Skip to content

Commit

Permalink
Merge pull request #15 from stackbrew/blocklayer-import
Browse files Browse the repository at this point in the history
Use new blocklayer.dev domain for dependencies
  • Loading branch information
shykes committed May 4, 2020
2 parents 2bac7e4 + d619730 commit 16edc58
Show file tree
Hide file tree
Showing 41 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion pkg/aws/aws.cue
@@ -1,6 +1,6 @@
package aws

import "b.l/bl"
import "blocklayer.dev/bl"

// AWS Config shared by all AWS packages
Config :: {
Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/cloudformation/cloudformation.cue
Expand Up @@ -3,7 +3,7 @@ package cloudformation
import (
"strings"

"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/ecr/ecr.cue
@@ -1,7 +1,7 @@
package ecr

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
"encoding/base64"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/ecr/ecr_test.cue
@@ -1,7 +1,7 @@
package ecr

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/eks/eks.cue
@@ -1,7 +1,7 @@
package eks

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
"encoding/base64"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/aws/eks/eks_test.cue
@@ -1,7 +1,7 @@
package eks

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
"stackbrew.io/kubernetes"
)
Expand Down Expand Up @@ -45,4 +45,4 @@ TestEKS: {
image: hello-world
"""#
}
}
}
2 changes: 1 addition & 1 deletion pkg/aws/elasticbeanstalk/elasticbeanstalk.cue
@@ -1,7 +1,7 @@
package elasticbeanstalk

import (
"b.l/bl"
"blocklayer.dev/bl"

"stackbrew.io/aws"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/s3/s3.cue
@@ -1,7 +1,7 @@
package s3

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/dockerhub/dockerhub.cue
@@ -1,7 +1,7 @@
package dockerhub

import (
"b.l/bl"
"blocklayer.dev/bl"
)

// Credentials retriever for Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion pkg/dockerhub/dockerhub_test.cue
@@ -1,7 +1,7 @@
package dockerhub

import (
"b.l/bl"
"blocklayer.dev/bl"
)

TestConfig : {
Expand Down
2 changes: 1 addition & 1 deletion pkg/experimental/nodejs/nodejs.cue
@@ -1,7 +1,7 @@
package nodejs

import (
"b.l/bl"
"blocklayer.dev/bl"
)

Container :: {
Expand Down
2 changes: 1 addition & 1 deletion pkg/file/file.cue
@@ -1,7 +1,7 @@
package file

import (
"b.l/bl"
"blocklayer.dev/bl"
"strconv"
"encoding/json"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/file/file_test.cue
@@ -1,7 +1,7 @@
package file

import (
"b.l/bl"
"blocklayer.dev/bl"
)

TestRead: {
Expand Down
2 changes: 1 addition & 1 deletion pkg/git/git.cue
Expand Up @@ -3,7 +3,7 @@ package git
import (
"strings"

"b.l/bl"
"blocklayer.dev/bl"
)

// Git repository
Expand Down
2 changes: 1 addition & 1 deletion pkg/git/git_test.cue
@@ -1,6 +1,6 @@
package git

import "b.l/bl"
import "blocklayer.dev/bl"

testClone: {
run: Repository & {
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/comment_test.cue
@@ -1,7 +1,7 @@
package github

import (
"b.l/bl"
"blocklayer.dev/bl"
"encoding/json"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/github/pull_request.cue
@@ -1,7 +1,7 @@
package github

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/git"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/github/pull_request_test.cue
@@ -1,7 +1,7 @@
package github

import (
"b.l/bl"
"blocklayer.dev/bl"
)

TestConfig: githubToken: bl.Secret
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/query.cue
Expand Up @@ -4,7 +4,7 @@ package github
// Reference: https://developer.github.com/v4/

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/graphql"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/github/repository.cue
@@ -1,7 +1,7 @@
package github

import (
"b.l/bl"
"blocklayer.dev/bl"
)

Repository :: {
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/repository_test.cue
@@ -1,7 +1,7 @@
package github

import (
"b.l/bl"
"blocklayer.dev/bl"
)

TestConfig: githubToken: bl.Secret
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/user_test.cue
@@ -1,7 +1,7 @@
package github

import (
"b.l/bl"
"blocklayer.dev/bl"
)

TestConfig: githubToken: bl.Secret
Expand Down
2 changes: 1 addition & 1 deletion pkg/go/go.cue
@@ -1,6 +1,6 @@
package go

import "b.l/bl"
import "blocklayer.dev/bl"

// Go application built with `go build`
App :: {
Expand Down
2 changes: 1 addition & 1 deletion pkg/go/go_test.cue
@@ -1,6 +1,6 @@
package go

import "b.l/bl"
import "blocklayer.dev/bl"

testGoBuild: {
run: App & {
Expand Down
2 changes: 1 addition & 1 deletion pkg/googlecloud/gcr/gcr.cue
@@ -1,7 +1,7 @@
package gcr

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/googlecloud"
"encoding/base64"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/googlecloud/gcr/gcr_test.cue
@@ -1,7 +1,7 @@
package gcr

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/googlecloud"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/googlecloud/gke/gke.cue
@@ -1,7 +1,7 @@
package gke

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/googlecloud"
"encoding/base64"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/googlecloud/gke/gke_test.cue
@@ -1,7 +1,7 @@
package gke

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/googlecloud"
"stackbrew.io/kubernetes"
)
Expand Down Expand Up @@ -45,4 +45,4 @@ TestGKE: {
image: hello-world
"""#
}
}
}
2 changes: 1 addition & 1 deletion pkg/googlecloud/googlecloud.cue
@@ -1,6 +1,6 @@
package googlecloud

import "b.l/bl"
import "blocklayer.dev/bl"

// Google Cloud Config shared by all packages
Config :: {
Expand Down
2 changes: 1 addition & 1 deletion pkg/http/http.cue
@@ -1,7 +1,7 @@
package http

import (
"b.l/bl"
"blocklayer.dev/bl"
"encoding/json"
"strconv"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/http/http_test.cue
@@ -1,7 +1,7 @@
package http

import (
"b.l/bl"
"blocklayer.dev/bl"
"encoding/json"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/kubernetes/helm/helm.cue
Expand Up @@ -3,7 +3,7 @@ package helm
import (
"strconv"

"b.l/bl"
"blocklayer.dev/bl"
)

// Install a Helm chart
Expand Down
4 changes: 2 additions & 2 deletions pkg/kubernetes/helm/helm_test.cue
Expand Up @@ -3,7 +3,7 @@ package helm
import (
"encoding/yaml"

"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/aws"
"stackbrew.io/aws/eks"
)
Expand Down Expand Up @@ -55,4 +55,4 @@ TestHelmCustomChart: {
atomic: false
wait: false
}
}
}
2 changes: 1 addition & 1 deletion pkg/kubernetes/krane/krane.cue
@@ -1,7 +1,7 @@
package krane

import (
"b.l/bl"
"blocklayer.dev/bl"
)

// Render a Krane template
Expand Down
4 changes: 2 additions & 2 deletions pkg/kubernetes/krane/krane_test.cue
@@ -1,7 +1,7 @@
package krane

import (
"b.l/bl"
"blocklayer.dev/bl"
"stackbrew.io/file"
"stackbrew.io/aws"
"stackbrew.io/aws/eks"
Expand Down Expand Up @@ -134,4 +134,4 @@ TestDeploy: {
source: kubeCfgDirectory.result
prune: false
}
}
}
2 changes: 1 addition & 1 deletion pkg/kubernetes/kubernetes.cue
@@ -1,7 +1,7 @@
package kubernetes

import (
"b.l/bl"
"blocklayer.dev/bl"
)

// Exposes `kubectl kustomize`
Expand Down
2 changes: 1 addition & 1 deletion pkg/kubernetes/kubernetes_test.cue
@@ -1,7 +1,7 @@
package kubernetes

import (
"b.l/bl"
"blocklayer.dev/bl"
"encoding/yaml"
"stackbrew.io/aws"
"stackbrew.io/aws/eks"
Expand Down
2 changes: 1 addition & 1 deletion pkg/netlify/netlify.cue
Expand Up @@ -3,7 +3,7 @@ package netlify
import (
"strings"

"b.l/bl"
"blocklayer.dev/bl"
)

// A Netlify account
Expand Down
2 changes: 1 addition & 1 deletion pkg/yarn/yarn.cue
Expand Up @@ -3,7 +3,7 @@ package yarn
import (
"strings"

"b.l/bl"
"blocklayer.dev/bl"
)

// A javascript application built by Yarn
Expand Down
2 changes: 1 addition & 1 deletion pkg/yarn/yarn_test.cue
@@ -1,6 +1,6 @@
package yarn

import "b.l/bl"
import "blocklayer.dev/bl"

TestYarn : {
run: App & {
Expand Down
2 changes: 1 addition & 1 deletion pkg/zip/zip.cue
@@ -1,6 +1,6 @@
package zip

import "b.l/bl"
import "blocklayer.dev/bl"

// Zip archive
Archive :: {
Expand Down

0 comments on commit 16edc58

Please sign in to comment.