-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
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,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
### 0.0.22-beta.0 (2020-04-09) | ||
|
||
|
||
### Features | ||
|
||
* **packaging:** :sparkles: Adding cli library to manage, list and use package.json scripts ([892ba82](https://github.com/Oscarz90/bismarck-cs/commit/892ba82274708f6aedaa1c8298896e83ecf6e789)) | ||
* **packaging:** :sparkles: Adding hook and linter for git commit messages ([15b6b4e](https://github.com/Oscarz90/bismarck-cs/commit/15b6b4e73b4e6513a05f9d38d9c12a6177573620)) | ||
* **packaging:** :sparkles: Adding linter for markdown readme file ([79d80b8](https://github.com/Oscarz90/bismarck-cs/commit/79d80b83947de0482dc9e78f64f202e5d879f760)) | ||
* **packaging:** Adding script to generate changelog temporal for preview purposes ([bcbd653](https://github.com/Oscarz90/bismarck-cs/commit/bcbd653adf754feebe20fc8611000093be57296c)) | ||
* **security:** :sparkles: Adding security and vulnerabilities tool to analyze the project ([8f0fbb7](https://github.com/Oscarz90/bismarck-cs/commit/8f0fbb7f985b2e22182002bd4501f2e491292b5f)) | ||
* :sparkles: Adding script and library to generate standard semantic versions ([70834e1](https://github.com/Oscarz90/bismarck-cs/commit/70834e1181f3690c74f71672d03acf3014ab7ed5)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* :bug: Fixing rules for commit linter ([b5dc0df](https://github.com/Oscarz90/bismarck-cs/commit/b5dc0dfda59f1d5b6825799c7fd759b9d67da8c8)) | ||
* **packaging:** :bug: Fixing version number of package file ([5362570](https://github.com/Oscarz90/bismarck-cs/commit/536257068dea8cc79313c8e11f6a2bbae36022c2)) | ||
* **packaging:** :bug: Removing changelog preset ([3adbb23](https://github.com/Oscarz90/bismarck-cs/commit/3adbb230b388471d994c7ca10ad0699406dbf08b)) |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "bismarck-cs", | ||
"version": "0.0.21", | ||
"version": "0.0.22-beta.0", | ||
"description": "Computer Science Repository", | ||
"main": "src/index.js", | ||
"repository": "[email protected]:Oscarz90/bismarck-cs.git", | ||
|
@@ -28,6 +28,7 @@ | |
"prebuild": "yarn run clean:dist", | ||
"precoverage": "yarn run clean:coverage", | ||
"premonitor": "yarn run clean:dist && yarn run build", | ||
"prerelease": "yarn run setenv:prod && yarn run clean && yarn run build && yarn run lint && yarn run test && yarn run coverage", | ||
"pretest": "yarn run clean:coverage && yarn run clean:reports", | ||
"release": "standard-version --no-verify", | ||
"security:auth": "snyk auth", | ||
|
@@ -36,6 +37,8 @@ | |
"security:protect": "snyk protect", | ||
"security:monitor": "snyk monitor", | ||
"serve": "node dist", | ||
"setenv:dev": "yarn config set production false", | ||
"setenv:prod": "yarn config set production true", | ||
"start": "nodemon --exec babel-node src/index.js", | ||
"tasks": "ntl", | ||
"test": "cross-env NODE_ENV=test mocha -c -S -R spec --require @babel/register --check-leaks ./src/**/*.test.js", | ||
|