Skip to content

Commit 9da0e87

Browse files
author
ADMSK\AVROGAL1
committed
docs: updates on workflows
Added information on documentation
1 parent a97ec5a commit 9da0e87

File tree

4 files changed

+138
-25
lines changed

4 files changed

+138
-25
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [0.0.0-dev](https://github.com/AlexRogalskiy/github-action-json-fields/compare/v2.0.1...v0.0.0-dev) (2021-04-27)
1+
# [0.0.0-dev](https://github.com/AlexRogalskiy/github-action-json-fields/compare/v2.0.1...v0.0.0-dev) (2021-04-28)
22

33

44

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
[![dependencies Status](https://status.david-dm.org/gh/AlexRogalskiy/github-action-json-fields.svg)](https://david-dm.org/AlexRogalskiy/github-action-json-fields)
3131
[![dependencies Status](https://status.david-dm.org/gh/AlexRogalskiy/github-action-json-fields.svg)](https://david-dm.org/AlexRogalskiy/github-action-json-fields?type=dev)
3232

33+
[![Codeac](https://static.codeac.io/badges/2-348120278.svg)](https://app.codeac.io/github/AlexRogalskiy/github-action-json-fields)
3334
[![Coverage Status](https://coveralls.io/repos/github/AlexRogalskiy/github-action-json-fields/badge.svg?branch=master)](https://coveralls.io/github/AlexRogalskiy/github-action-json-fields?branch=master)
3435
[![codebeat badge](https://codebeat.co/badges/0111bd42-442b-49f5-9f9c-996fe588b07c)](https://codebeat.co/projects/github-com-alexrogalskiy-github-action-json-fields-master)
3536
[![Total alerts](https://img.shields.io/lgtm/alerts/g/AlexRogalskiy/github-action-json-fields.svg?logo=lgtm\&logoWidth=18)](https://lgtm.com/projects/g/AlexRogalskiy/github-action-json-fields/alerts/)

package-lock.json

Lines changed: 123 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,52 +59,52 @@
5959
"@semantic-release/npm": "^7.0.10",
6060
"@semantic-release/release-notes-generator": "^9.0.1",
6161
"@types/jest": "^26.0.20",
62+
"@types/lodash.mergewith": "^4.6.6",
6263
"@types/node": "^14.14.35",
6364
"@types/prettier": "^2.1.5",
64-
"@types/lodash.mergewith": "^4.6.6",
6565
"@typescript-eslint/eslint-plugin": "^4.15.0",
6666
"@typescript-eslint/parser": "^4.15.0",
6767
"@typescript-eslint/typescript-estree": "^4.17.0",
6868
"@vercel/ncc": "~>0.27.0",
69-
"dateformat": "^4.5.1",
7069
"boxen": "^5.0.0",
71-
"cz-conventional-changelog": "^3.3.0",
7270
"conventional-changelog-cli": "^2.0.0",
7371
"coveralls": "^3.1.0",
72+
"cz-conventional-changelog": "^3.3.0",
73+
"dateformat": "^4.5.1",
7474
"del-cli": "^3.0.1",
7575
"editorconfig-checker": "3.3.0",
76-
"license-checker": "^25.0.1",
7776
"eslint": "^7.19.0",
78-
"eslint-plugin-unicorn": "^17.2.0",
77+
"eslint-config-prettier": "^6.15.0",
7978
"eslint-import-resolver-typescript": "^2.0.0",
8079
"eslint-plugin-eslint-comments": "^3.1.2",
81-
"eslint-config-prettier": "^6.15.0",
82-
"eslint-plugin-github": "^4.1.1",
80+
"eslint-plugin-github": "^4.1.3",
8381
"eslint-plugin-import": "^2.22.1",
8482
"eslint-plugin-jest": "^23.20.0",
8583
"eslint-plugin-node": "^11.1.0",
8684
"eslint-plugin-prettier": "^3.1.4",
8785
"eslint-plugin-spellcheck": "0.0.8",
88-
"typedoc": "^0.20.28",
86+
"eslint-plugin-unicorn": "^17.2.0",
8987
"expect": "^26.6.2",
9088
"folio": "^0.3.18",
9189
"git-cz": "^4.1.0",
9290
"husky": "^5.0.8",
9391
"jest": "^26.6.3",
9492
"jest-circus": "^26.6.3",
93+
"jsonlint": "^1.6.3",
94+
"license-checker": "^25.0.1",
9595
"lint-staged": "^10.1.6",
96+
"markdown-link-check": "^3.8.6",
9697
"prettier": "^2.1.2",
9798
"pretty-quick": "^3.1.0",
98-
"semantic-release": ">=17.2.3",
9999
"remark-cli": "^9.0.0",
100-
"remark-validate-links": "^10.0.2",
101100
"remark-lint-code-block-style": "^2.0.1",
102-
"remark-preset-davidtheclark": "^0.12.0",
103101
"remark-lint-ordered-list-marker-value": "^2.0.1",
104-
"markdown-link-check": "^3.8.6",
105-
"jsonlint": "^1.6.3",
102+
"remark-preset-davidtheclark": "^0.12.0",
103+
"remark-validate-links": "^10.0.2",
104+
"semantic-release": ">=17.2.3",
106105
"ts-jest": "^26.4.4",
107106
"ts-node": ">=9.0.0",
107+
"typedoc": "^0.20.28",
108108
"typescript": "^4.1.3"
109109
},
110110
"repository": {

0 commit comments

Comments
 (0)