action-docs
Advanced tools
Comparing version 2.4.0 to 2.4.1
# Changelog | ||
## [2.4.1](https://github.com/npalm/action-docs/compare/v2.4.0...v2.4.1) (2024-04-27) | ||
### Bug Fixes | ||
* update tsconfig to node20 recommendations ([#579](https://github.com/npalm/action-docs/issues/579)) ([2866dcf](https://github.com/npalm/action-docs/commit/2866dcffa1a5fa41aa61633868632261dfc90a69)) | ||
## [2.4.0](https://github.com/npalm/action-docs/compare/v2.3.0...v2.4.0) (2024-03-13) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "action-docs", | ||
"version": "2.4.0", | ||
"version": "2.4.1", | ||
"description": "Generate GitHub action docs based on action.yml", | ||
@@ -17,3 +17,3 @@ "main": "lib/index.js", | ||
"lint": "eslint src/**/*.ts", | ||
"test": "yarn run test-default && yarn run test-cli", | ||
"test": "jest --testTimeout=10000 --collect-coverage --coverage", | ||
"test-default": "jest --testTimeout=10000 --testPathIgnorePatterns=__tests__/cli.test.ts --collect-coverage --coverage", | ||
@@ -20,0 +20,0 @@ "test-cli": "nyc jest --testTimeout=10000 --silent --testMatch=**/cli*test.ts && nyc report --reporter=lcov --reporter=html --report-dir=./coverage_nyc", |
{ | ||
"compilerOptions": { | ||
"target": "ESNext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, | ||
"module": "ESNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, | ||
"moduleResolution": "node", | ||
"target": "es2022" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, | ||
"module": "NodeNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, | ||
"moduleResolution": "NodeNext", | ||
"outDir": "./lib" /* Redirect output structure to the directory. */, | ||
@@ -7,0 +7,0 @@ "rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */, |
47272