-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b162214
commit 85c323d
Showing
11 changed files
with
20,223 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
node_modules | ||
.eslintcache | ||
.nyc_output | ||
|
||
# JetBrains IDEs | ||
.idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18 | ||
16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# See the syntax docs at | ||
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions | ||
|
||
name: Licenses export | ||
description: Generates a file with the dependencies used in the application with their respective licenses. | ||
|
||
inputs: | ||
licenses-file: | ||
description: 'Licenses output JSON file' | ||
required: false | ||
default: 'licenses.json' | ||
omit-version: | ||
description: 'Omit package versions from the report' | ||
required: false | ||
default: 'true' | ||
production-only: | ||
description: 'Only include production packages' | ||
required: false | ||
default: 'true' | ||
direct-dependencies-only: | ||
description: 'Only include direct dependencies' | ||
required: false | ||
default: 'true' | ||
|
||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' |
Oops, something went wrong.