Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ inputs:
description: 'Sort order: desc, asc'
hide-files:
description: 'Glob pattern to hide files with'
install-command:
description: 'Command to install the package with, if empty the action will try to autodetect it'
Copy link
Member

@privatenumber privatenumber Apr 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: 'Command to install the package with, if empty the action will try to autodetect it'
description: 'The command used to install your project's dependencies. By default, there is autodetect logic based on `package.json#packageManager`, package lock files, etc.'


runs:
using: 'node12'
using: 'node14'
main: 'dist/index.js'
6,397 changes: 3,404 additions & 2,993 deletions dist/index.js

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,27 @@
]
},
"devDependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/cache": "2.0.2",
"@actions/core": "1.6.0",
"@actions/exec": "1.1.1",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.1",
"@actions/io": "1.1.2",
"@pvtnbr/eslint-config-base": "^0.1.19",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-node-resolve": "13.2.0",
"builtin-modules": "^3.1.0",
"byte-size": "^7.0.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"esbuild": "^0.12.20",
"byte-size": "8.1.0",
"conventional-changelog-conventionalcommits": "4.6.3",
"esbuild": "0.14.36",
"eslint": "^7.32.0",
"glob-to-regexp": "^0.4.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"lodash-es": "^4.17.21",
"markdown-table": "^2.0.0",
"outdent": "^0.7.1",
"rollup": "^2.55.1",
"rollup-plugin-esbuild": "^4.5.0",
"markdown-table": "3.0.2",
"outdent": "0.8.0",
"rollup": "2.70.1",
"rollup-plugin-esbuild": "4.9.1",
"rollup-plugin-terser": "^7.0.2"
},
"eslintConfig": {
Expand Down
Loading