Commits on Source (11)
-
Matthew Clarkson authored
-
Matthew Clarkson authored
GitLab release assets only have 10MiB. Package registry has 100MiB so we can include more pre-built binaries.
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Matthew Clarkson authored
-
Bot authored
# [1.1.0](https://git.gitlab.arm.com/semantic-release/yq/compare/v1.0.0...v1.1.0) (2024-02-26) ### Bug Fixes * **release:** package Windows, Darwin, Linux binaries ([4601e23e](https://git.gitlab.arm.com/semantic-release/yq/commit/4601e23ece0f573e126f937b58a3f10f4e9b9844)) ### Features * add `assets.frontMatter` ([8d3247af](https://git.gitlab.arm.com/semantic-release/yq/commit/8d3247af83d53d793e3891cb5350d2073de5c193))
Showing
- CHANGELOG.md 12 additions, 0 deletionsCHANGELOG.md
- CODEOWNERS 37 additions, 0 deletionsCODEOWNERS
- README.md 36 additions, 18 deletionsREADME.md
- argument.mjs 57 additions, 0 deletionsargument.mjs
- asset.mjs 57 additions, 0 deletionsasset.mjs
- assets.mjs 32 additions, 0 deletionsassets.mjs
- expression.mjs 29 additions, 0 deletionsexpression.mjs
- file-path.mjs 48 additions, 0 deletionsfile-path.mjs
- front-matter.mjs 26 additions, 0 deletionsfront-matter.mjs
- package-lock.json 4 additions, 5 deletionspackage-lock.json
- package.json 8 additions, 5 deletionspackage.json
- plugin.mjs 30 additions, 114 deletionsplugin.mjs
- test/argument.test.mjs 41 additions, 0 deletionstest/argument.test.mjs
- test/asset.test.mjs 10 additions, 0 deletionstest/asset.test.mjs
- test/file-path.test.mjs 17 additions, 0 deletionstest/file-path.test.mjs
- test/front-matter.test.mjs 10 additions, 0 deletionstest/front-matter.test.mjs
- test/integration.test.mjs 14 additions, 3 deletionstest/integration.test.mjs
- test/yq.test.mjs 7 additions, 0 deletionstest/yq.test.mjs
- yq.mjs 55 additions, 0 deletionsyq.mjs
CODEOWNERS
0 → 100644
argument.mjs
0 → 100644
asset.mjs
0 → 100644
assets.mjs
0 → 100644
expression.mjs
0 → 100644
file-path.mjs
0 → 100644
front-matter.mjs
0 → 100644
{ | ||
"name": "@semantic-release/yq", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "A `semantic release` plugin for `yq`", | ||
"config": { | ||
"version": "4.40.5", | ||
"url": "https://github.com/mikefarah/yq/releases/download/v${version}", | ||
"filter": "^yq_(?:linux)_(?:amd64|arm64)(?:\\.exe)?$" | ||
"filter": "^yq_(?:linux|windows|darwin)_(?:amd64|arm64)(?:\\.exe)?$" | ||
}, | ||
"exports": { | ||
"import": "./plugin.mjs", | ||
... | ... | @@ -15,7 +15,7 @@ |
"modules": "plugin.mjs", | ||
"files": [ | ||
"plugin.js", | ||
"plugin.mjs", | ||
"*.mjs", | ||
"bin/*" | ||
], | ||
"scripts": { | ||
... | ... | @@ -50,7 +50,7 @@ |
"@commitlint/config-conventional": "^18", | ||
"@semantic-release/changelog": "^6", | ||
"@semantic-release/commit-analyzer": "^11", | ||
"@semantic-release/config-gitlab-npm": "^1", | ||
"@semantic-release/config-gitlab-npm": "^1.1.2", | ||
"@semantic-release/config-release-channels": "^1", | ||
"@semantic-release/exec": "^6", | ||
"@semantic-release/git": "^10", | ||
... | ... | @@ -77,9 +77,12 @@ |
"c8": { | ||
"100": true, | ||
"include": [ | ||
"plugin.mjs", | ||
"*.mjs", | ||
"plugin.js" | ||
], | ||
"exclude": [ | ||
"prepublish.mjs" | ||
], | ||
"reporter": [ | ||
"text", | ||
"html", | ||
... | ... |
test/argument.test.mjs
0 → 100644
test/asset.test.mjs
0 → 100644
test/file-path.test.mjs
0 → 100644
test/front-matter.test.mjs
0 → 100644
test/yq.test.mjs
0 → 100644
yq.mjs
0 → 100644