github-action-readme-generator 1.1.9 → 1.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-action-readme-generator",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"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.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"bin": {
|
|
8
|
-
"gha-readme-generator": "dist/index.cjs"
|
|
8
|
+
"gha-readme-generator": "dist/index.cjs",
|
|
9
|
+
"github-action-readme-generator": "dist/index.cjs"
|
|
9
10
|
},
|
|
10
11
|
"displayName": "bitflight-devops/github-action-readme-generator",
|
|
11
12
|
"publishConfig": {
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"scripts": {
|
|
32
33
|
"test": "NODE_ENV=testing jest",
|
|
33
34
|
"test-ci": "NODE_ENV=testing jest --ci --reporters=default --reporters=jest-junit",
|
|
34
|
-
"build": "rimraf dist out;esbuild --bundle src/index.ts --sourcemap=inline --platform=node --outfile=dist/index.cjs --target=node16 && git add dist",
|
|
35
|
+
"build": "rimraf dist out;esbuild --bundle src/index.ts --sourcemap=inline --platform=node --outfile=dist/index.cjs --target=node16 && chmod +x dist/index.cjs && git add dist",
|
|
35
36
|
"build:docker": "run-script-os",
|
|
36
37
|
"build:docker:win32": "docker run --rm -t -v \"%cd%\":/work -w /work node:16-alpine sh -c \"yarn run build\"",
|
|
37
38
|
"build:docker:default": "docker run --rm -t -v $(pwd):/work -w /work node:16-alpine sh -c 'yarn run build'",
|
|
@@ -39,8 +40,8 @@
|
|
|
39
40
|
"format:fix": "yarn run format",
|
|
40
41
|
"bump": "yarn version -i patch && yarn run release",
|
|
41
42
|
"bump:minor": "yarn version -i minor && yarn run release",
|
|
42
|
-
"release": "
|
|
43
|
-
"
|
|
43
|
+
"release": "./release.sh",
|
|
44
|
+
"postrelease": "yarn npm publish --access public --tag v${npm_package_version} --tag latest",
|
|
44
45
|
"postversion": "git push origin --follow-tags && git push --tags",
|
|
45
46
|
"precommit": "pretty-quick --staged",
|
|
46
47
|
"prepare": "is-ci || husky install; yarn run build",
|
|
@@ -51,11 +52,12 @@
|
|
|
51
52
|
"lint:fix": "yarn run format && eslint --fix -c .eslintrc.cjs ./src/index.ts ./__tests__/index.test.ts",
|
|
52
53
|
"lint:markdown": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
|
|
53
54
|
"lint:markdown:fix": "yarn run lint:markdown --fix",
|
|
54
|
-
"all": "
|
|
55
|
+
"all": "yarn run build && yarn run format && yarn run lint && yarn test",
|
|
55
56
|
"postinstall": "echo '✨ Successfully Installed'",
|
|
56
57
|
"commit": "git-cz",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
58
|
+
"current-version": "yarn npm version --parseable",
|
|
59
|
+
"pre-commit": "lint-staged && yarn run build && git add dist && yarn run generate-docs",
|
|
60
|
+
"preversion": "echo 'Running test';yarn run test",
|
|
59
61
|
"version": "echo 'Run versioning commands';echo \"::set-output name=tag::v${npm_package_version}\"",
|
|
60
62
|
"generate-docs": "echo 'Generating docs';node dist/index.cjs && git add README.md dist"
|
|
61
63
|
},
|
|
@@ -119,7 +121,7 @@
|
|
|
119
121
|
"reflect-metadata": "^0.1.13"
|
|
120
122
|
},
|
|
121
123
|
"devDependencies": {
|
|
122
|
-
"@babel/core": "^7.18.
|
|
124
|
+
"@babel/core": "^7.18.10",
|
|
123
125
|
"@babel/eslint-parser": "^7.18.9",
|
|
124
126
|
"@babel/plugin-proposal-decorators": "^7.18.10",
|
|
125
127
|
"@babel/preset-env": "^7.18.10",
|
|
@@ -147,7 +149,7 @@
|
|
|
147
149
|
"commitizen": "^4.2.5",
|
|
148
150
|
"cz-conventional-changelog": "^3.3.0",
|
|
149
151
|
"dotenv": "^16.0.1",
|
|
150
|
-
"esbuild": "^0.14.
|
|
152
|
+
"esbuild": "^0.14.54",
|
|
151
153
|
"esbuild-plugin-eslint": "^0.0.1",
|
|
152
154
|
"eslint": "^8.21.0",
|
|
153
155
|
"eslint-config-adjunct": "^4.11.2",
|
|
@@ -164,7 +166,7 @@
|
|
|
164
166
|
"eslint-plugin-github": "^4.3.7",
|
|
165
167
|
"eslint-plugin-html": "^7.1.0",
|
|
166
168
|
"eslint-plugin-import": "^2.26.0",
|
|
167
|
-
"eslint-plugin-jest": "^26.
|
|
169
|
+
"eslint-plugin-jest": "^26.8.0",
|
|
168
170
|
"eslint-plugin-jest-async": "^1.0.3",
|
|
169
171
|
"eslint-plugin-json": "^3.1.0",
|
|
170
172
|
"eslint-plugin-lodash": "^7.4.0",
|
|
@@ -181,7 +183,7 @@
|
|
|
181
183
|
"eslint-plugin-scanjs-rules": "^0.2.1",
|
|
182
184
|
"eslint-plugin-security": "^1.5.0",
|
|
183
185
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
184
|
-
"eslint-plugin-sonarjs": "^0.
|
|
186
|
+
"eslint-plugin-sonarjs": "^0.15.0",
|
|
185
187
|
"eslint-plugin-sort-class-members": "^1.14.1",
|
|
186
188
|
"eslint-plugin-switch-case": "^1.1.2",
|
|
187
189
|
"eslint-plugin-unicorn": "^43.0.2",
|