Skip to content

Commit

Permalink
chore(release): bump version to v1.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie-BitFlight committed Aug 10, 2022
1 parent c3eb58f commit bbb28a0
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/3a35b715.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.2.6",
"version": "1.2.7",
"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 @@ -16,7 +16,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 @@ -65,20 +72,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 @@ -196,7 +222,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 bbb28a0

Please sign in to comment.