Skip to content

Commit

Permalink
build(release): v1.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie-BitFlight committed Aug 12, 2022
1 parent 89eb83a commit 3835dec
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 11 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
Empty file added .yarn/versions/f098d7c4.yml
Empty file.
50 changes: 39 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-action-readme-generator",
"version": "1.3.12",
"version": "1.3.13",
"description": "This is a CLI tool and GitHub Action that reads in the details from a \nGitHub Action's `action.yml` file and updates the `README.md` file\nwith the `name`, `description`, `usage`, `inputs`, `outputs`, and\nexamples of the action.\nConfiguration can be provided via a `.ghadocs.json` file stored in the\nroot directory of the Action's repository, via the command line when\nusing the cli, or via the `with:` section of this Action.\n\n\nThis tool uses markdown comments as delimiting tokens within the `README.md`\nfile to determine where to place the generated content.\n\n[`README.example.md`](README.example.md) example with all fields filled in, and no other free-form content.",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
Expand All @@ -17,7 +17,14 @@
"bugs": {
"url": "/~https://github.com/bitflight-devops/github-action-readme-generator/issues"
},
"keywords": ["actions", "github", "node16", "documentation", "github-actions", "generator"],
"keywords": [
"actions",
"github",
"node16",
"documentation",
"github-actions",
"generator"
],
"author": "Jamie Nelson <jamie@bitflight.io>",
"license": "APACHE",
"scripts": {
Expand Down Expand Up @@ -66,20 +73,39 @@
"bin": "github-action-readme-generator"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-length": [0],
"body-max-line-length": [0],
"footer-max-length": [0],
"footer-max-line-length": [0],
"header-max-length": [0]
"body-max-length": [
0
],
"body-max-line-length": [
0
],
"footer-max-length": [
0
],
"footer-max-line-length": [
0
],
"header-max-length": [
0
]
}
},
"engines": {
"node": ">=14.0.0"
},
"files": ["package.json", "README.md", "/bin", "/dist"],
"os": ["!win32"],
"files": [
"package.json",
"README.md",
"/bin",
"/dist"
],
"os": [
"!win32"
],
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
Expand Down Expand Up @@ -195,7 +221,9 @@
"lint-staged": {
"*.{md,json,yaml,yml,sh}": "prettier --write",
"{src,__tests__}/**/*.js": "eslint --cache --fix",
"*.ts": ["eslint --cache --fix"]
"*.ts": [
"eslint --cache --fix"
]
},
"resolutions": {
"typescript": "^4.7.4"
Expand Down

0 comments on commit 3835dec

Please sign in to comment.