Skip to content

Commit

Permalink
Merge pull request #45 from c3pm-labs/feat/tags
Browse files Browse the repository at this point in the history
add tags in c3pm.yaml
  • Loading branch information
chloebourbion authored Apr 18, 2021
2 parents 692e34c + 3a0227a commit 4f4f699
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 3 additions & 2 deletions config/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ type Manifest struct {
Standard string `yaml:"standard"`
License string `yaml:"license"`
Dependencies Dependencies `yaml:"dependencies"`
Tags []string `yaml:"tags,omitempty"`
}

type BuildConfig struct {
Expand All @@ -37,8 +38,8 @@ type AdapterConfig struct {

type PublishConfig struct {
IncludeDirs []string `yaml:"include_dirs,omitempty"`
Include []string `yaml:"include"`
Exclude []string `yaml:"exclude"`
Include []string `yaml:"include,omitempty"`
Exclude []string `yaml:"exclude,omitempty"`
}

// New returns the default manifest values.
Expand Down
2 changes: 0 additions & 2 deletions config/manifest/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ build:
- include/private/private.h
include_dirs:
- include/private
include: []
exclude: []
dependencies:
future: 12.2.3
past: 2.0.0
Expand Down

0 comments on commit 4f4f699

Please sign in to comment.