1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-11-06 09:09:29 +02:00

refactor: better code organization (#757)

* refactor: merging archive in the same repo

* refactor: merging archive in the same repo

* refactor: better organizing packages

* refactor: fixing renames

* fix: new dep version

* fix: makefile

* fix: zip/tar tests

* fix: gitigonore

* fix: s3 tests

* fix: archive test
This commit is contained in:
Carlos Alexandro Becker
2018-08-14 23:50:20 -03:00
committed by GitHub
parent 38e5d3239e
commit 64b1f14a86
118 changed files with 285 additions and 198 deletions

View File

@@ -6,8 +6,8 @@ import (
"text/template"
"time"
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/internal/artifact"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/masterminds/semver"
"github.com/pkg/errors"
)

View File

@@ -3,9 +3,9 @@ package tmpl
import (
"testing"
"github.com/goreleaser/goreleaser/config"
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/internal/artifact"
"github.com/goreleaser/goreleaser/pkg/config"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/stretchr/testify/assert"
)