Skip to content
This repository has been archived by the owner on Oct 29, 2021. It is now read-only.

Start using dep for dependency management #97

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
130 changes: 130 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[[constraint]]
name = "github.com/codegangsta/cli"

[[constraint]]
name = "github.com/dop251/goja"

[[constraint]]
name = "github.com/dop251/goja_nodejs"

[[constraint]]
name = "github.com/elazarl/go-bindata-assetfs"

[[constraint]]
name = "github.com/fatih/structs"

[[constraint]]
name = "github.com/itsjamie/go-bindata-templates"

[[constraint]]
name = "github.com/labstack/echo"

[[constraint]]
name = "github.com/nu7hatch/gouuid"

[[constraint]]
name = "github.com/olebedev/config"

[[constraint]]
name = "github.com/olebedev/gojax"
7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ APP_NAME = $(shell pwd | sed 's:.*/::')
TARGET = $(BIN)/$(APP_NAME)
GIT_HASH = $(shell git rev-parse HEAD)
LDFLAGS = -w -X main.commitHash=$(GIT_HASH)
GLIDE := $(shell command -v glide 2> /dev/null)

build: $(ON) $(GO_BINDATA) clean $(TARGET)

Expand Down Expand Up @@ -58,9 +57,3 @@ lint:

install:
@yarn install

ifdef GLIDE
@glide install
else
$(warning "Skipping installation of Go dependencies: glide is not installed")
endif
79 changes: 0 additions & 79 deletions vendor/github.com/jteeuwen/go-bindata/CONTRIBUTING.md

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/jteeuwen/go-bindata/LICENSE

This file was deleted.

2 changes: 0 additions & 2 deletions vendor/github.com/jteeuwen/go-bindata/Makefile

This file was deleted.

Loading