-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define build time dependencies (#181)
* Define build time dependencies * Update changelog * Address PR comments * Extract to deps.yaml * Rename deps.yml to build.yml * Move build.yml under _dev/build * Replace array with obj * Fix
- Loading branch information
Showing
5 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dependencies: | ||
ecs: | ||
reference: git@7a11f3e1f7d8f05e8f06623fd98254b8cb34c441 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## | ||
## Describes the specification for the package's main manifest.yml file | ||
## | ||
spec: | ||
# Everything under here follows JSON schema (https://json-schema.org/), written as YAML for readability | ||
type: object | ||
additionalProperties: false | ||
properties: | ||
dependencies: | ||
type: object | ||
description: Package dependencies | ||
additionalProperties: false | ||
properties: | ||
ecs: | ||
description: ECS dependency | ||
type: object | ||
additionalProperties: false | ||
properties: | ||
reference: | ||
type: string | ||
description: Source reference | ||
pattern: 'git@[a-z0-9]{40}' | ||
required: | ||
- reference | ||
required: | ||
- dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters