Commits on Source (7)
-
Stefan Hynek authored
configured to run on master branch; provide technical reference pdf and md as well as changelog as assets to the release; also update these files in the repo
-
Stefan Hynek authored
-
Stefan Hynek authored
-
Stefan Hynek authored
-
Stefan Hynek authored
-
Stefan Hynek authored
Resolve "provide pdf with a semantic release" Closes #26 See merge request !28
-
Stefan Hynek authored
# 1.0.0 (2020-06-22) ### Features * **commitizen:** provide a customized commitizen adapter configuration ([b2645c64](b2645c64)), closes [#20](#20) * add first draft for new document structure ([d2acdbf1](d2acdbf1)), closes [#27](#27) * make the repo commitizen friendly ([fcb002c9](fcb002c9)), closes [#20](#20)
Showing
- .cz-config.js 0 additions, 68 deletions.cz-config.js
- .gitlab-ci.yml 16 additions, 6 deletions.gitlab-ci.yml
- CHANGELOG.md 8 additions, 0 deletionsCHANGELOG.md
- README.md 10 additions, 8 deletionsREADME.md
- package-lock.json 7692 additions, 1052 deletionspackage-lock.json
- package.json 47 additions, 3 deletionspackage.json
.cz-config.js
deleted
100644 → 0
CHANGELOG.md
0 → 100644
This diff is collapsed.
... | ... | @@ -8,13 +8,57 @@ |
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"markdownlint-cli": "^0.23.1", | ||
"@semantic-release/changelog": "^5.0.1", | ||
"@semantic-release/git": "^9.0.0", | ||
"@semantic-release/gitlab-config": "^8.0.0", | ||
"commitizen": "^4.1.2", | ||
"cz-customizable": "^6.2.0" | ||
"cz-conventional-changelog": "^3.2.0", | ||
"markdownlint-cli": "^0.23.1", | ||
"semantic-release": "^17.0.8" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-customizable" | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"release": { | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
"changelogFile": "CHANGELOG.md" | ||
} | ||
], | ||
[ | ||
"@semantic-release/gitlab", | ||
{ | ||
"gitlabUrl": "https://gitlab.gwdg.de", | ||
"assets": [ | ||
{ | ||
"path": "technical-reference.pdf", | ||
"label": "Technical Reference (PDF)" | ||
}, | ||
{ | ||
"path": "technical-reference.md", | ||
"label": "Technical Reference (MD)" | ||
}, | ||
{ | ||
"path": "CHANGELOG.md", | ||
"label": "Changelog" | ||
} | ||
] | ||
} | ||
], | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": [ | ||
"CHANGELOG.md" | ||
] | ||
} | ||
] | ||
] | ||
} | ||
} |